我一直在尝试重写这样的网址:
fullDestPathString
到此:
/gallery/test.php?id=1
然而它不起作用。我已启用url重写并使用phpinfo()进行检查。
这是我的代码:
/gallery/test/1
答案 0 :(得分:1)
您可能需要重写基础。尝试在RewriteEngine on
行之后的行上添加以下内容。
RewriteBase /gallery/
答案 1 :(得分:0)
这是一个应该有效的重写规则
RewriteEngine On
RewriteRule ^gallery/test/([^/]*)$ /gallery/test.php?id=$1 [L]
由于