现在我正在从测试目录访问 abc.xml,如下所示
http://localhost/test/abc.xml
我想将上面的 URL 重定向如下
http://localhost/test/test.php?abc.xml
http://localhost/test/test.php?abc.js
http://localhost/test/test.php?xyz.txt
如果我从测试目录访问任何文件,都可以通过在文件名后附加 test.php? 来访问。
谢谢,斯里尼瓦斯
答案1
RewriteEngine On
RewriteRule ^/test/abc.xml$ /test/test.php?abc.xml [NC,L]