重定向而不更改URL Apache

Con*_*ine 5 apache redirect

我想在不更改浏览器URL的情况下将一个URL重定向到另一个URL

www.example.com/abc/(.*).xml应重定向到www.example.com/abc/xyz/index.htm?file=$1

但浏览器应显示www.example.com/abc/(.*).xml

arc*_*444 6

你可以使用RewriteRule:

RewriteEngine On
RewriteRule /abc/(.*)\.xml$ /abc/xyz/index.htm?file=$1 [L]
Run Code Online (Sandbox Code Playgroud)

确保您已mod_rewrite启用并将其置于您的VirtualHost配置或您的配置.htaccess文件中DocumentRoot