|
|
发表于 2017-4-12 14:28:59
|
显示全部楼层
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteCond %{http_host} ^www.abc.com$ [NC]
- RewriteRule ^(.*)$ https://abc.com/$1 [R=301,L]
- RewriteCond %{SERVER_PORT} !^443$
- RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
- </IfModule>
复制代码
|
|