重定向到子文件夹.htaccess

时间:2013-09-27 08:24:48

标签: regex .htaccess mod-rewrite

我有 /abc/index.html

文件

我想通过 /index.html 访问 /abc/.htaccess 文件中的一些规则。

这可能吗?怎么样?!

1 个答案:

答案 0 :(得分:0)

.htaccess不应该在/ abc /中,位于根目录/。

在那种情况下:

RewriteCond %{REQUEST_URI} !^/abc/
RewriteRule index.html abc/index.html [L]