View Single Post
  #8  
Old 02-04-2010, 02:07 AM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 33,612
fadillzzz is an unknown quantity at this point
Default RE: User login dependant on if there's a "www." in the url

You forgot to put a "^" before arvyre\.com$ on line 3
Code:
RewriteEngine On

RewriteCond %{HTTP_HOST} ^arvyre\.com$
RewriteRule (.*) http://www.arvyre.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^get/([0-9]+).gif$ /adoptables200/siggy.php?id=$1 [L]
oh and I just realized on your registration page the allowed length value for the password and password confirmation box are not the same...shouldn't you be fixing it?
Reply With Quote