我如何才能让用户转到时,mydomain.com/test/<any page after this point>
它显示页面mydomain.com/testhandler/
而不返回任何错误。例如,我有一个系统,我使用 URI 链接到包含页面信息的 xml 文件,我需要将后面的每个部分/test
链接到它
任何帮助都将不胜感激,谢谢。
答案1
在配置中(无论是主 apache 配置还是 vhosts 块)添加:
RewriteEngine on
RewriteRule "^/test/*" "/testhandler/" [PT]
请参阅:
https://httpd.apache.org/docs/2.4/rewrite/