【发布时间】:2020-09-05 01:03:30
【问题描述】:
我已将非 www url 添加到我的常规 - 设置 - WordPress 地址 (URL) 和站点地址 (URL)
并编辑了我的 wordpress .htaccess 如下。但它仍然没有重定向到非 www 站点,知道为什么吗?
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
# remove www
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
【问题讨论】:
标签: wordpress apache .htaccess ovh