Forums

how to edit .htaccess for making url with www. (2 posts)

  1. nitin2r
    Member
    Posted 1 year ago #

    Hi friends
    Can anybody tell me how to i edit .htaccess file that make my wordpress site url with www.
    Now it is not showing www. before for example it is showing http://example.net
    so how do I edit .htaccess to make it as http://www.example.net

    Please any of you give some tips over it

    Thanks in advance

  2. flamenco
    Member
    Posted 1 year ago #

    Hi Nitin,
    Editing .htaccess can be tricky, so back it up first. :)

    Here's an example that might help:

    RewriteCond %{HTTP_HOST} !^www\.nitin\.com$ [NC]
    RewriteRule ^(.*)$ http://www.nitin.com/$1 [R=301,L]

    Of course, you'll want to change the "nitin" part to your site's URL. The idea of that is to add the "www", and the 301 tells search engines that it's a permanent change.

    Test carefully, some servers may work differently.

    Good luck, Dave

Topic Closed

This topic has been closed to new replies.

About this Topic