0

我有一个问题。我想通过 htaccess 中的 301 重定向将我的网站地址从 www.lapnet.net.pl 重定向到 lapnet.net.pl。当我尝试使用此代码时总是:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.lapnet.net.pl
RewriteRule ^(.*)$ http://lapnet.net.pl$1 [R=permanent,L]

浏览器将我重定向到http://lapnet.net.pl/index.php?view= (视图是负责加载内容的变量)。我怎样才能避免这个“index.php?view=”?感谢帮助

4

1 回答 1

0

最后一行对我来说看起来很可疑:我会/在域之后添加一个并添加查询字符串,但我不确定这是否是您的问题的原因:

RewriteRule ^(.*)$ http://lapnet.net.pl/$1 [R=301,L,QSA]
                                                    ^^^ add original query string
                                       ^ slash here
于 2013-03-07T16:34:42.713 回答