作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将任何以 [subdomain.]example.TLD[/?query_string]
开头的 URL stat 重定向到 example.org[/?query_string]
以下规则集均有效,但不能组合使用。IE。 www.example.com => example.orgexample.com/?query_string => example.org/?query_string
RewriteEngine On
RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} !^$
RewriteRule ^(.*)$ http://example.org/$1?%{QUERY_STRING} [R=301,L]
RewriteCond %{HTTP_HOST} !=example.org
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]
最佳答案
您只需要一个规则,因为 QUERY_STRING 会在重定向后自动复制到。
RewriteCond %{HTTP_HOST} !^example\.org$ [NC]
RewriteRule ^ http://example.org%{REQUEST_URI} [R=301,L]
关于.htaccess - mod 重写 : handling sub domains, 顶级域和查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17845744/
我有 10 个顶级域,例如example1.com、example2.com、example3.com 等,每个域都有自己独特的网站(不是重定向)。我的目标是为所有 10 个网站拥有一个 Google
在 Google Developers Console 上创建 Google API Oauth2.0 凭据时,我选择“Web Application”应用类型。 在“授权重定向 URI”字段中,我可
我是一名优秀的程序员,十分优秀!