.htaccess http://domain.tld/index.php?name=domain.com 到 http://domain.tld/domain.com
我如何让 .htaccess 从标题中制作示例?访问者将在他的浏览器中输入 http://mydomain.tld/somedomain.tld 我的 whois 脚本应该处理http://mydomain.tld/index.php?name=somedomain.tld并返回whois结果。
谢谢
How can i have .htaccess make example from title ? Visitor will type in his browser http://mydomain.tld/somedomain.tld and my whois script should process http://mydomain.tld/index.php?name=somedomain.tld and return whois result.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Apache 的
mod_rewrite
。(未经测试,如果这不能完全按照您希望的方式工作,请阅读
mod_rewrite
。)Use Apache's
mod_rewrite
.(Not tested, so read up on
mod_rewrite
if this doesn't work precisely as you'd like it to.)在 .htaccess 文件中尝试以下规则:
上面的 RewriteCond 将防止无限重定向。
NC
无案例比较R=301
将使用 https 状态 301 进行重定向L
将制定最后一条规则NE
用于无转义查询字符串QSA
将附加您现有的查询参数$1
是您的 REQUEST_URITry following rule in your .htaccess file:
RewriteCond above will prevent infinite redirections.
NC
No Case comparisonR=301
will redirect with https status 301L
will make last ruleNE
is for no escaping query stringQSA
will append your existing query parameters$1
is your REQUEST_URI