View Single Post
Old 2008-03-07, 09:42 AM   #1
HowlingWulf
Me fail English? That's unpossible!
 
HowlingWulf's Avatar
 
Join Date: Dec 2003
Location: FL
Posts: 1,381
Send a message via ICQ to HowlingWulf
.htaccess RewriteRule question

I have a script that uses an arg to grab a picture in the form
http://www.mydomain.com/?picid=10

I'd like to use .htaccess to be able to use
http://www.mydomain.com/pic10/

I have
RewriteRule ^pic(.+)/$ /?picid=$1
which sort of works in that it loads the script with the proper arg

however the problem is the script loads .css files and other images in a relative path, so I'm seeing this in the logs:
/pic10/images/something.jpg
instead of
/images/something.jpg

Is there a second Rewrite Rule I could use to fix this? I've tried
RewriteRule ^pic.+/(.+)$ /$1
but no luck.
__________________
WordPress Porn directory theme => Maddos
Create a Porn Tube => Video Pornster
HowlingWulf is offline   Reply With Quote