vote up 0 vote down star

I am using URL re-writer module provided by http://urlrewriter.net/ site. Can anyone tell me how can I use there module to redirect www.example.com to example.com (301 redirect)

Thanks

flag

76% accept rate

3 Answers

vote up 4 vote down check

If you just want to redirect www.example.com:

<if header="HTTP_HOST" match="www.example.com">
    <redirect url=".*" to="http://example.com$0" permanent="true" />
</if>

And if you want to redirect everything except example.com to example.com:

<unless header="HTTP_HOST" match="example.com">
    <redirect url=".*" to="http://example.com$0" permanent="true" />
</unless>
link|flag
@Gumbo <if> condition is working for me. <unless> is not working. <if> has one little mistake "example.com$0" it should be "example.com$0" else it will redirect you from "www.ex.com/dom/about.aspx" to "ex.com//dom/about.aspx" notice the double slashes. Rest its fine, thanks :) – Prashant Feb 28 at 19:41
Please edit that slash, for correct answer. – Prashant Feb 28 at 19:43
vote up 1 vote down
<redirect url="http://www.example.com/(.+)$" to="http://example.com/$1">
link|flag
Isn't the url only the part after the domain? – configurator Feb 28 at 19:35
not working for me :( – Prashant Feb 28 at 19:39
vote up 0 vote down

I've never used urlrewriter, but it looks like you'd use the following (or something similar:

<redirect url="^(.+)$" to="http://example.com/$1" permanent="true" />

on the www.example.com site.

link|flag
It seems that your rule will redirect ANY request, also not domain which is specified. I mean if web site bindings are set to few domains, all of them will be redirected to one given – abatishchev Feb 28 at 19:25
Ah, yes you're right. I'm used to .htacces, where it only affects the given path and subpaths. – lacqui Feb 28 at 19:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.