www.aaa.com/index.html跳转www.aaa.com设置

来源:互联网 发布:顺风车软件 编辑:程序博客网 时间:2024/04/29 03:49

.htaccess文件,跳转代码如下:

<IfModule mod_rewrite.c>    Options +FollowSymlinks    RewriteEngine On    RewriteRule ^index.html$ http://www.qiuxue365.cn/ [L,R=301]    RewriteRule ^index/index.html$ http://www.qiuxue365.cn/ [L,R=301]       RewriteCond %{http_host} ^qiuxue365.cn [NC]                // 顶级域名跳转    RewriteRule ^(.*)$ http://www.qiuxue365.cn/$1 [L,R=301]    // 顶级域名跳转
 RewriteCond %{REQUEST_URI} /+[^\.]+$ RewriteRule ^(.+[^/])$ %{REQUEST_URI}.html [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>


用自己的网站www.qiuxue365.cn测试了,成功返回301: