根据部分 url 重定向

发布于 2024-11-02 19:49:27 字数 317 浏览 0 评论 0原文

如何根据动态 url 将 apache 重定向到起始启动页面。部分 url 始终是静态的。例如,http://buy.domain.com/product/product1-name-here< /a>
如果我想重定向
http://buy.domain.com/product 中的所有内容,我需要做什么/* 到某个页面?

How do I do an apache redirect to a startic splash page based on a dynamic url. Part of the url is always static. For example, http://buy.domain.com/product/product1-name-here
What do I need to do if I want to redirected everything that comes in http://buy.domain.com/product/* to a certain page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那请放手 2024-11-09 19:49:27

只需在 .htaccess 文件中尝试这个简单的规则:

RewriteEngine on
Options +FollowSymlinks -MultiViews

RewriteRule ^product/.*$ /yourSplashPage? [R,L,NC]

Just try this simple rule in .htaccess file:

RewriteEngine on
Options +FollowSymlinks -MultiViews

RewriteRule ^product/.*$ /yourSplashPage? [R,L,NC]
不甘平庸 2024-11-09 19:49:27

.htaccess 文件中,创建 Apache RewriteRule 以根据正则表达式有选择地选择链接。

RewriteRule ^product/.*$ /certainPage.html?

In your .htaccess file, create an Apache RewriteRule to selectively choose links based on a regular expression.

RewriteRule ^product/.*$ /certainPage.html?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文