我已将以下内容添加到我的 .htaccess 以正确地将任何访问者从http://domain.com重定向到http://www.domain.com ...但我仍然无法让它与子页面一起使用.. .ie http://domain.com/subpage尚未重定向到http://www.domain.com/subpage。
这是我现在的 htaccess 中的内容:
<Files wp-config.php>
order allow,deny
deny from all
</Files>
<Files .htaccess>
order allow,deny
deny from all
</Files>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_HOST} !^www
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [L,R]
</IfModule>
所以问题是我还需要在我的 htaccess 中添加或更新什么才能使其正常工作?
非常感谢您的建议!