htaccess从子文件夹中获取内容

时间:2012-08-03 17:23:01

标签: .htaccess nested directory

我搜索了很多但找不到我想要的信息。我有一个域http://mydomain.com,我的html文件嵌套在3级子文件夹中(例如thingy.html嵌套在t/h/i/文件夹中,testy.html嵌套在/t/e/s/文件夹中

现在我要在浏览器中输入http://mydomain.com/testy.htmlhttp://mydomain.com/thingy.html,它应显示这些文件的内容,而不会重定向到http://mydomain.com/t/h/i/thingy.htmlhttp://mydomain.com/t/e/s/testy.html

这可行吗?

有人可以帮帮我吗?我是.htaccess的新手

1 个答案:

答案 0 :(得分:0)

除非确定这些3级子文件夹的确定性,否则你必须明确地和单独地完成每一个。例如,文档根目录中的htaccess文件,您可以:

RewriteEngine On
RewriteRule ^/?thingy.html$ /t/h/i/thingy.html [L]
RewriteRule ^/?testy.html$ /t/e/s/testy.html [L]