我想将所有请求从ex-ample.com重定向到example.com。网址结构应保持不变,我只想“替换”域中的“ - ”...
http://www.ex-ample.com/asdf123
redirects to:
http://www.example.com/asdf123
谢谢!
答案 0 :(得分:0)
如果它只是一个连字符:
RewriteCond %{HTTP_HOST} ^([^-]+)-([^-]+)$
RewriteRule ^ http://%1%2%{REQUEST_URI} [L,R]