我有以下.htaccess文件,但网站的某些部分可以在没有" www"的情况下访问。如何更改我的htaccess,以便我的网站的所有网址只能通过" www"?
<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我希望有人可以提供帮助吗?
编辑:当我从其他帖子使用此规则时:
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.yourdomain.com%{REQUEST_URI} [R=301,L,NE]
问题没有解决。所有页面都可以正常使用https和www。但是文件夹wp-content / uploads中的所有图像仍然可以在没有www和http的情况下访问。该网站是hochzeitshaus-leipzig.de
我没有看到错误......
答案 0 :(得分:0)
检查RewriteCond
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301,NC]