gpt4 book ai didi

.htaccess - htaccess 在不重定向的情况下加载页面 B 而不是页面 A

转载 作者:行者123 更新时间:2023-12-01 08:48:45 27 4
gpt4 key购买 nike

使用 .htaccess 文件,如何在加载 page A 时加载 page B?我不想更改 URL,它仍应显示为 page A

示例:用户加载 www.mysite.com/contact 并获取 www.mysite.com/contact-us 的结果

最好,我怎样才能将多个 URL 重定向到同一个地方?比如.com/A,.com/B,.com/C都是加载.com/d的内容。有没有办法将其中的许多组合在一起(与此解决方案相反:htaccess redirect without changing url)

最佳答案

根据您的 URL 布局,我会使用如下内容:

RewriteCond %{REQUEST_URI} ^/(A) [OR,NC]
RewriteCond %{REQUEST_URI} ^/(B) [OR,NC]
RewriteCond %{REQUEST_URI} ^/(C) [OR,NC]
RewriteCond %{REQUEST_URI} ^/(E)
RewriteRule ^.*$ /d#%1 [L]

当然你也可以一行完成:

RewriteCond %{REQUEST_URI} ^/(A|B|C|E) [NC]
RewriteRule ^.*$ /d#%1 [L]

关于.htaccess - htaccess 在不重定向的情况下加载页面 B 而不是页面 A,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17499110/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com