在Apache上,我想要这样的东西:
https://myserver.com/Intro的评估结果为/myserver.com/januaryintro.php
作为示例。
我使用htaccess,但无法完成这项工作。我收到多页错误或找不到页面。
答案 0 :(得分:0)
代理是解决方案。但是需要加载代理模块。
并且由于您正在使用htaccess,因此无法使用ProxyPass。您必须使用带有[P]
标志的RewriteRule。
例如:
RewriteEngine On
RewriteRule ^/intro$ https://example.com/januaryintro.php [L,P]
ProxyPassReverse / https://example.com/januaryintro.php
参考文献: