标签: apache .htaccess mod-rewrite redirect
我有两个指向apache服务器上同一目录的域:
www.myexample.com和www.my-example.com
现在带有连字符的域应该重定向到没有连字符的域。
我在htaccess中尝试了以下内容:
RewriteCond %{HTTP_HOST} ^www\.my-example\.com [NC] RewriteRule ^(.*)$ https://www.myexample.com [R=301,L]
但它不起作用......?
有什么想法吗?