标签: apache .htaccess mod-rewrite mod-proxy
一直在寻找一个没有运气的答案(到处搜索)
基本上,我想在不更改URL的情况下将页面(子文件夹)重写到新域。该链接应保持不变,但显示其他网站
以下内容有效,但它会破坏图像,因为它会用旧网址替换所有内容:
RewriteEngine On RewriteBase / RewriteRule ^test/(.*)$ http://newdomain/$1 [P,L]