我有URL重寫問題。URL重寫不能自動工作
我想改變動態鏈接example.com/new.php?name=latest-news
到example.com/latest-news-of-the-day
我的.htaccess文件的配置是
RewriteEngine on
RewriteRule (.*)-of-the-day$ new.php?name=$1[NC,L]
現在的頁面URL仍然是相同的,但如果我寫手動example.com/latest-news-of-the-day
它的工作原理。我想根據.htaccess文件顯示新的url,但它不會自動顯示。