Search code examples
.htaccessurlno-www

Remove www from the url


Does anyone have the setttings from the .htaccess file to remove www from my url?

http://example.com

I've tried using some of the settings in the internet but it gives me a redirect loop. I need something that prevents a redirect loop.

this would really help me. thank you


Solution

  • You can put this code in your htaccess

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

    If you're still having a redirect loop:

    • you have maybe another script that redirects non-www to www
    • old rule still in browser's cache (try cleaning cache or with another browser)