Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有文件/abc/index.html
我想通过/index.html使用/abc/.htaccess文件中的一些规则来访问它。
这可能吗?如何?!
.htaccess 不应该在 /abc/ 中,位在根 / 中。
在这种情况下:
RewriteCond %{REQUEST_URI} !^/abc/ RewriteRule index.html abc/index.html [L]