我有一个共享托管计划,因此我的网站位于:/public_html/example.com /
.htaccess位于根文件夹/ public_html /
中我想将example.com重定向到www.example.com
到目前为止,我已经使用了
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
当我在example.com/test/上使用浏览器时,它会指向www.example.com/example.com/test/
我该如何解决?