Laith Striegher Asked: 2021-09-25 06:32:23 +0800 CST2021-09-25 06:32:23 +0800 CST 2021-09-25 06:32:23 +0800 CST 如何使实际上不存在的页面仅在某个目录之后才链接到某个页面? 772 我如何做到这一点,以便当用户转到mydomain.com/test/<any page after this point>它时,它会显示页面mydomain.com/testhandler/并且不返回任何错误。例如,我有一个系统,我使用 URI 链接到带有页面信息的 xml 文件,并且我需要/test链接到它之后的每个部分 任何帮助将不胜感激,谢谢。 php apache2 uri 1 个回答 Voted Best Answer Laith Striegher 2021-09-25T08:04:17+08:002021-09-25T08:04:17+08:00 在配置中(无论是主要的 apache 配置还是 vhosts 块)添加: RewriteEngine on RewriteRule "^/test/*" "/testhandler/" [PT] 分别。看: https://httpd.apache.org/docs/2.4/rewrite/ https://httpd.apache.org/docs/2.4/rewrite/remapping.html https://httpd.apache.org/docs/2.4/rewrite/flags.html
在配置中(无论是主要的 apache 配置还是 vhosts 块)添加:
分别。看:
https://httpd.apache.org/docs/2.4/rewrite/
https://httpd.apache.org/docs/2.4/rewrite/remapping.html
https://httpd.apache.org/docs/2.4/rewrite/flags.html