我网站上的主页面被重定向到www.example.com
,所有其他网页都没问题。
我尝试将我的网站从www.example.com
重定向到example.com
。
我不知道我必须将example
更改为我的网站名称,现在它不起作用。
我删除了.htaccess
文件中的代码,但它仍然重定向到example.com
。
我认为以下是删除的.htaccess
文件中的内容。
Options +FollowSymLinks
RewriteEngine on
# index.php to /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]
为什么即使删除此文件后我的网站也会被重定向?