比如我在.htaccess
中这样写
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [QSA,PT,L]
</IfModule>
当我在浏览器访问//domain.com/abc
时,实际请求的是//domain.com/index.php?abc
如果转发的规则很复杂,而且数量很多,我不知道实际命中了哪个规则的情况下,如何知道转发后的实际请求的URL?