View Single Post
12-01-2007, 09:08 PM
#2
Andrew R is offline Andrew R
Status: Request a custom title
Join date: Dec 2005
Location: Arizona
Expertise:
Software:
 
Posts: 5,200
iTrader: 17 / 95%
 

Andrew R is on a distinguished road

  Old

Code:
RewriteRule ^view/$/ /index.php?image=$1 [L]

RewriteRule ^rate/$/$ /rate.php?image=$1&rating=$2 [L]

RewriteRule ^leave/$ /leaving.php?site=$1 [L]
Should be:
Code:
RewriteRule ^view/(.*)/$ /index.php?image=$1 [L]

RewriteRule ^rate/(.*)/(.*)$ /rate.php?image=$1&rating=$2 [L]

RewriteRule ^leave/(.*)$ /leaving.php?site=$1 [L]
Or at least, that should work, in theory. Also, once it works, you need to change all your links to link to the URL you want (i.e. link to http://www.youriste.com/view/1/)