View Single Post
  #7  
Old 02-03-2010, 09:38 PM
Quillink Quillink is offline
Member
 
Join Date: Dec 2008
Posts: 93
Credits: 15,744
Quillink
Default RE: User login dependant on if there's a "www." in the url

This is what my .htaccess looks like with your code:

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]
It doesn't seem to be working. Is there anything incorrect in the extract above?
Reply With Quote