.htaccess重定向到文件夹和子文件夹

时间:2012-05-24 05:29:57

标签: .htaccess redirect

我遇到htaccess重定向问题。以下是我遇到的问题。

主域实际指向的根文件夹包含以下文件夹:“example” example.com实际上内部链接到路径“root / example /”而不是“root /”。这是使用以下htaccess代码

完成的
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteCond %{REQUEST_URI} !^/example/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /example/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ example/index.html [L]

“exmaple”文件夹包含以下子文件夹:newexample,newexample_beta 如果我转到URL“example.com/newexample”,则URL需要内部链接到“root / example / newexample”。但是网址会将我重定向到“example.com/example/newexample/” 你能不能让我知道需要做什么

0 个答案:

没有答案