在我的网站上创建 301 重定向时遇到问题。当我创建重定向时,浏览器显示完整的 qherysting 而不是指向页面。
例如。我想直接 /contact 到 /contact-us
我得到的是:
/联系我们?页面=联系
这是我的 .htaccess 中的代码:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteBase /
redirect 301 /contact /contact-us
RewriteRule ^([^/\.]+)/?$ index.php?page=$1 [L]
任何想法为什么会发生这种情况?