使用htaccess更改文档根目录

时间:2011-11-14 08:25:35

标签: apache .htaccess

我的网站有文件根〜/ public_html,但我想将所有文件添加到〜/ public_html / www

有没有办法用htaccess做到这一点?

谢谢。

1 个答案:

答案 0 :(得分:52)

将以下行添加到public_html文件夹中的.htaccess文件中:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain-name.com$
RewriteCond %{REQUEST_URI} !folder/
RewriteRule (.*) /folder/$1 [L]