我正在尝试修改我的 .htaccess 文件以修改我的 URL,并尝试了很多方法,但无法完全实现我想要的。例如我有这个网址:
http://mywebsite.com/FOLDER/index.php?id=5
现在我希望它看起来像:
http://mywebsite.com/FOLDER/5
或者
http://mywebsite.com/FOLDER/ID/5
我的 .htaccess 包含以下代码:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^index/([0-9]+)/([0-9a-zA-Z_-]+) index.php?id=$1 [NC]
我无法弄清楚出了什么问题。谢谢。