在public_html根目录建立文件.htaccess,加入以下内容:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?你的域名\.com$
RewriteCond %{REQUEST_URI} !^/子目录/
RewriteRule ^(.*)$ /子目录/$1
比如你想定向www.google.com到子目录下的文件夹index,那么就改成
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?google\.com$
RewriteCond %{REQUEST_URI} !^/index/
RewriteRule ^(.*)$ /index/$1

发表回复