Mobile app version of vmapp.org
Login or Join
Deb1703797

: Site not accessible without www in url - Error 400 bad request A site that I am developing works with the format www.domain.com but when typing the domain without the www i.e domain.com I

@Deb1703797

Posted in: #301Redirect #Dns #DnsServers #Domains #NoWww

A site that I am developing works with the format domain.com but when typing the domain without the www i.e domain.com I receive a error 400 bad request. How can I enable non-www for my site.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Deb1703797

3 Comments

Sorted by latest first Latest Oldest Best

 

@Dunderdale272

First check the DNS records for your domain. You need to have an A Record for both the and non-www. versions of the domain. Some providers will use an @ for the non-www. version.

Then check your server's host.conf file. This is where (in Apache at least) you tell your webserver where to direct traffic for various domains. If you have a directive for domain.com but not domain.com that can cause requests to fail, as your server doesn't know where to send them.

10% popularity Vote Up Vote Down


 

@Dunderdale272

If you're using Apache, you can configure it in your control panel to always use the "www" prefix or make it to remove the "www" prefix, go to domain management and change the 'A" record to always use "www" prefix.normally this shouldn't even be a problem, because most web hosting has this already configured.

10% popularity Vote Up Vote Down


 

@Hamm4606531

To solve your problem, if you're using Apache, you can use mod_rewrite in this way:


Create a text file and call it .htaccess
Open the file with a text editor and write:



RewriteEngine On
RewriteCond %{HTTP_HOST} ^juve-news.com [NC]
RewriteRule ^(.*)$ www.juve-news.com/ [R=301,NC,L]




Save the file and upload it in your website root folder

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme