网址:http://localhost/test/quotes/index.php?p=top-games
我需要将其重写为http://localhost/test/quotes/top-games
我如何使用 htaccess 文件执行此操作?请任何人给我htaccess代码。
谢谢
网址:http://localhost/test/quotes/index.php?p=top-games
我需要将其重写为http://localhost/test/quotes/top-games
我如何使用 htaccess 文件执行此操作?请任何人给我htaccess代码。
谢谢
尝试将这些规则添加到文档根目录中的 htaccess 文件中:
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /test/quotes/index\.php?p=([^&\ ]+)
RewriteRule ^ /test/quotes/%1? [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^test/quotes/(.+)$ /test/quotes/index.php?p=$1 [L,QSA]