.htaccess里做301转向解决思路
程序员文章站
2022-06-05 17:48:37
...
.htaccess里做301转向
我现在想把 abc.com转换成www.abc.com
问题是我的.htaccess里面已经做过其它的转向,该怎么写这样
原来是这样的
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
ErrorDocument 404 /index.php
------解决方案--------------------
RewriteCond %{http_host} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{http_host}/$1 [L,R=301]
我现在想把 abc.com转换成www.abc.com
问题是我的.htaccess里面已经做过其它的转向,该怎么写这样
原来是这样的
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
ErrorDocument 404 /index.php
------解决方案--------------------
RewriteCond %{http_host} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{http_host}/$1 [L,R=301]
相关文章
相关视频