How to Rewriteurl for without www in htaccess ?

Discussion in 'Site & Server Administration' started by abhi10kumar, Jun 30, 2011.

  1. #1
    What is the full code that redirects all urls (including subfolders) without www

    For example: http://www. abc. co. in redirects to http://abc.o.in
    as well as http://www. abc. co. in/subfolder redirects http://abc. co. in/subfolder
     
    abhi10kumar, Jun 30, 2011 IP
  2. sahabcse

    sahabcse Well-Known Member

    Messages:
    272
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    140
    #2
    Try below code

    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
     
    sahabcse, Jul 1, 2011 IP