我有一个问题。我想通过 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=”?感谢帮助