根据部分 url 重定向
如何根据动态 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在 .htaccess 文件中尝试这个简单的规则:
Just try this simple rule in .htaccess file:
在
.htaccess
文件中,创建 Apache RewriteRule 以根据正则表达式有选择地选择链接。In your
.htaccess
file, create an Apache RewriteRule to selectively choose links based on a regular expression.