No matter what url somebody uses to access my site, I’d like it to redirect to www.MyUrl.com. Is this possible?

3 Answers
3

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 Reply

Your email address will not be published. Required fields are marked *