htaccess重定向错误的第三级域重定向

时间:2015-05-09 14:55:12

标签: php apache .htaccess mod-rewrite redirect

我有第三级域名(domain.example.com),我有这个.htaccess:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.example\.com [NC]
RewriteCond %{REQUEST_URI} !^/domain/
RewriteRule ^(.*)$ /domain/$1 [L, QSA]

所以现在我需要创建文件夹(名称:文件夹)。当我尝试加载页面时

 domain.example.com/folder/index.html 

页面没有显示,我必须加载

 domain.example.com/domain/folder/index.html...

如何“隐藏”文件夹域,以便我可以通过

加载页面
 domain.example.com/folder/index.html

感谢您的回答

0 个答案:

没有答案