在localhost中,我想进行重定向,但我不明白什么是错的。
RewriteEngine on
RewriteCond %{REQUEST_URI} !/index.php$
RewriteCond %{REMOTE_HOST} !^127.0.0.1
RewriteRule $ namepage.php [R=302, L]
答案 0 :(得分:1)
您不能在标志之间包含空格,它会被解析为RewriteRule
指令的单独参数:
RewriteRule $ namepage.php [R=302,L]