我想在不更改浏览器URL的情况下将一个URL重定向到另一个URL
www.example.com/abc/(.*).xml应重定向到www.example.com/abc/xyz/index.htm?file=$1
但浏览器应显示www.example.com/abc/(.*).xml
你可以使用RewriteRule
:
RewriteEngine On RewriteRule /abc/(.*)\.xml$ /abc/xyz/index.htm?file=$1 [L]
确保您已mod_rewrite
启用并将其置于您的VirtualHost
配置或您的配置.htaccess
文件中DocumentRoot