避免htaccess中的双重重定向

时间:2018-12-03 16:35:14

标签: wordpress .htaccess redirect

我想避免使用htaccess文件进行第二次重定向。我使用重定向mappper进行了测试,结果表明,使用http中的非www可以得到2个重定向。有什么办法只能实现一次重定向吗?还是有必要吗?

# BEGIN WordPress
<IfModule mod_rewrite.c>

RewriteEngine On

RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.christianwagnerfilms.com%{REQUEST_URI} [R=301,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

0 个答案:

没有答案