htaccess重定向错误 - 出了什么问题?

时间:2012-07-25 21:37:36

标签: apache .htaccess redirect

在localhost中,我想进行重定向,但我不明白什么是错的。

RewriteEngine on
RewriteCond %{REQUEST_URI} !/index.php$
RewriteCond %{REMOTE_HOST} !^127.0.0.1
RewriteRule $ namepage.php [R=302, L]

1 个答案:

答案 0 :(得分:1)

您不能在标志之间包含空格,它会被解析为RewriteRule指令的单独参数:

RewriteRule $ namepage.php [R=302,L]