建议使用notepad++工具,当然新建文本文档也可实现,但是可能会存在无效的问题,当然是少数情况
.
将不带WWW.的
域名跳转到带WWW.的标准格式:
RewriteEngine On
RewriteCond %{http_host} ^mfisp.com$ [NC]
RewriteRule ^(.*)$ http://www.mfisp.com/$1 [R=301,L]
将网址带index.php跳转到不带index.php的标准域名:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.php HTTP/
RewriteRule ^index.php$ http://www.mfisp.com/ [R=301,L]
将网址带index.html跳转到不带index.html的标准域名:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.html HTTP/
RewriteRule ^index.html$ http://www.mfisp.com/ [R=301,L]
将里面网址改好后保存文件为.htaccess放到
服务器的网站根目录下即可实现。