trimidium
07-20-2007, 06:02 PM
Basically I need this to not redirect subdomains that i specify.
The line that says fivecows, when added to .htaccess gives me a "this page is not redirecting properly" error for my entire domain. If I eliminate that condition it works great to force everybody else to www.
# start force www into URL for entire domain
Options -Indexes
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} !^fivecows\.thesmartass\.info [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.thesmartass\.info [NC]
RewriteRule ^(.*)$ http://www.thesmartass.info/$1 [R=301,L]
The line that says fivecows, when added to .htaccess gives me a "this page is not redirecting properly" error for my entire domain. If I eliminate that condition it works great to force everybody else to www.
# start force www into URL for entire domain
Options -Indexes
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} !^fivecows\.thesmartass\.info [NC,OR]
RewriteCond %{HTTP_HOST} !^www\.thesmartass\.info [NC]
RewriteRule ^(.*)$ http://www.thesmartass.info/$1 [R=301,L]