我正在尝试通过 ISAPI Rewrite 2 将所有通配符子域重定向到 example.com。
例如 qqqq.example.com 301 重定向到 example.com
使用 Stack 上的其他信息,我有以下将 www 重定向到非 www:
RewriteEngine on
RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]
对于需要什么其他条件/规则的任何帮助将不胜感激。
干杯