1

谁能帮我解决这个 .htaccess 条目

301 将非 WWW 重定向到 WWW URL 的 htaccess 条目

RewriteEngine on
RewriteCond %{HTTP_HOST} ^!acethehimalaya.com$ [NC]

RewriteRule ^(.*)$ http://www.acethehimalaya.com/$1 [R=301,L]

将 www.acethehimalaya.com/index.html 重定向到 www.acethehimalaya.com

RewriteEngine on 
RewriteCond %{REQUEST_URI} ^/index.html$ 

RewriteRule .* http://www.acethehimalaya.com/ [R=302,L]

所有这些条目是否有效,因为它给我带来了问题并且我无法登录到我的后端

4

2 回答 2

1

允许所有 RewriteEngine On RewriteCond %{THE_REQUEST} ^[AZ]{3,9}\ /index.php\ HTTP/ RewriteRule ^index.php$ http://kursayin.am/ [R=301,L] AddDefaultCharset utf -8

http://kursayin.am/index.php

它适用于这个网站

于 2013-01-27T10:11:10.527 回答
0

重写引擎开启

RewriteCond %{THE_REQUEST} ^[AZ]{3,9}\ /index.html\ HTTP/

RewriteRule ^index.html$ http://acethehimalaya.com/ [R=301,L]

:) 试试这个我在我的网站上使用这样的代码

于 2013-01-27T09:38:43.980 回答