我在htaccess文件中进行了重定向:
Redirect 301 /example.com/oldAddress http://www.example.com/newAddress.php
ErrorDocument 404 /index.php
但是它会生成这个网址:
http://www.example.com/newAddress.php?redirect=1
因此导致404错误。我怎样才能使它发挥作用?
答案 0 :(得分:0)
将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteRule ^oldAddress http://www.example.com/newAddress.php? [L,NC,R=301]
?
最终会定位任何现有的查询字符串。