将ex-ample.com/asdf重定向到example.com/asdf

时间:2010-10-09 07:10:29

标签: apache .htaccess mod-rewrite

我想将所有请求从ex-ample.com重定向到example.com。网址结构应保持不变,我只想“替换”域中的“ - ”...

http://www.ex-ample.com/asdf123
redirects to:
http://www.example.com/asdf123

谢谢!

1 个答案:

答案 0 :(得分:0)

如果它只是一个连字符:

RewriteCond %{HTTP_HOST} ^([^-]+)-([^-]+)$
RewriteRule ^ http://%1%2%{REQUEST_URI} [L,R]