Force the Website URL to Include “www” and to be Upper Case?

As far as i know there is no way to force the url to uppercase.

As for forcing the www. this can vary as to where you are hosting etc.

Here is one generic way of doing this using your .htaccess file.

# Forcing www. infront of domain
RewriteEngine On
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^(domain\.com)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

Leave a Comment