Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 localhost 中,我想进行重定向,但我不明白出了什么问题。
RewriteEngine on RewriteCond %{REQUEST_URI} !/index.php$ RewriteCond %{REMOTE_HOST} !^127.0.0.1 RewriteRule $ namepage.php [R=302, L]
标志之间不能有空格,它会被解析为RewriteRule指令的单独参数:
RewriteRule
RewriteRule $ namepage.php [R=302,L]