我正在this网站上工作,该网站会重定向到https,除非有人写一个以www开头的网址并打开除主页之外的网页。例如,
www.demacmedia.com/work
以下是我在htacess文件中使用的代码重定向,
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTPS} off
# Rewrite to HTTPS:
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END WordPress
答案 0 :(得分:0)