我環顧四周,似乎沒有人遇到與我一樣的問題。如何強制www。與.htaccess?
我用:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]
然而,當我瀏覽到yoursite.com
我得到採取www.yoursite.com/public_html
不存在。
這裏是我的目錄結構:
/
| .htaccess
|
| public_html
|
|index.php
這工作完美,謝謝。 – joshkrz