我在文件夹中的 .htaccess 文件中有以下代码
http://localhost/modrewrite/test/
RewriteCond %{REQUEST_URI} ^modrewrite/.*$
RewriteRule b.html [L]
我想做的就是每当我转到上面那个文件夹中的 index.php 时,我希望它重定向到 b.html。我知道这可以通过使用来完成
RewriteEngine on
RewriteRule index.php b.html [L]
但我想使用 RewriteCond 和 %{REQUEST_URI} 来看看它是如何工作的。谢谢。