真的与mod_rewrite的.htaccess混淆了

时间:2017-02-17 15:57:11

标签: apache .htaccess mod-rewrite

我在同一目录中尝试了两个.htaccess文件。它们是不同的,但它们都可以成功访问相同的URL。发生了什么?谢谢!

第一个.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule da /site1/testin.php [L]                                                                                                                                          
</IfModule>

第二个.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule da testin.php [L]                                                                                                                                            
</IfModule>

我把它们放在/ site1中。 testin.php在/ site1中。 当我访问http://127.0.0.1/site1/da时,他们都运作良好。为什么? /中没有testin.php。 apache是​​如何找到它的?

非常感谢!

0 个答案:

没有答案