0

我有文件/abc/index.html

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

这可能吗?如何?!

4

1 回答 1

0

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

在这种情况下:

RewriteCond %{REQUEST_URI} !^/abc/
RewriteRule index.html abc/index.html [L]
于 2013-09-27T08:29:23.707 回答