.htaccess重写不能使用我的网站

时间:2015-12-17 23:44:20

标签: .htaccess

我一直在尝试重写这样的网址:

fullDestPathString

到此:

/gallery/test.php?id=1

然而它不起作用。我已启用url重写并使用phpinfo()进行检查。

这是我的代码:

/gallery/test/1

2 个答案:

答案 0 :(得分:1)

您可能需要重写基础。尝试在RewriteEngine on行之后的行上添加以下内容。

RewriteBase /gallery/

答案 1 :(得分:0)

这是一个应该有效的重写规则

RewriteEngine On
RewriteRule ^gallery/test/([^/]*)$ /gallery/test.php?id=$1 [L]

由于

相关问题