MyBB Community Forums

Full Version: Domain World Wide Web Tag Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, 
I have a really simple Problem.

When I typ www. before my domain, the website will load with textures errors. 
[Image: error_1.PNG]

This is without, all correct.
[Image: error_2.PNG]


Click here to go to my website.

Thank you and have a nice Day.
There seems to be a redirect in place to remove the www. from the URL. Check your .htaccess
(2015-11-18, 09:03 PM)Ashley1 Wrote: [ -> ]There seems to be a redirect in place to remove the www. from the URL. Check your .htaccess

What I should change ? Big Grin
Hi! You might want to add these lines to your .htaccess:
RewriteCond %{HTTP_HOST} ^www\.DOMAIN-NAME\.TLD-NAME [NC]
RewriteRule ^(.*)$ http://yourdomain.comnetorgwhatever/$1 [L,R=301]

So if you're using it on http://cabconmodding.com/ then it should look like:
RewriteCond %{HTTP_HOST} ^www\.cabconmodding\.com [NC]
RewriteRule ^(.*)$ http://cabconmodding.com/$1 [L,R=301]

Hope this helps!
(2015-12-07, 10:13 AM)daakurai Wrote: [ -> ]Hi! You might want to add these lines to your .htaccess:
RewriteCond %{HTTP_HOST} ^www\.DOMAIN-NAME\.TLD-NAME [NC]
RewriteRule ^(.*)$ http://yourdomain.comnetorgwhatever/$1 [L,R=301]

So if you're using it on http://cabconmodding.com/ then it should look like:
RewriteCond %{HTTP_HOST} ^www\.cabconmodding\.com [NC]
RewriteRule ^(.*)$ http://cabconmodding.com/$1 [L,R=301]

Hope this helps!
It helps thank you Big Grin