View Full Version : [SOLVED] .htaccess Quick Help
Pc 1203
08-10-2007, 03:06 AM
Hi All,
I'm wondering, how would I rewrite this:
image.php?u=#
to
sig_#.png
Thanks!
- Pc1203
nico_swd
08-10-2007, 11:09 AM
RewriteEngine On
RewriteRule ^sig_(\d{1,11})\.png$ image.php?u=$1
Pc 1203
08-10-2007, 01:33 PM
Well, when I type "http://mydomain.tld/sigs/sig_9.png" I get a 404 error. I placed:
RewriteEngine On
RewriteRule ^sig_(\d{1,11})\.png$ image.php?u=$1
into my .htaccess file in the same directory. And I also checked, my host does allow .htaccess files.
- Pc1203
nico_swd
08-10-2007, 05:11 PM
I just tested it on my host and it works. I placed the htaccess file in the same directory as the image.php file.
Btw, I guess that # is only gonna be a numeric value?
Maybe try:
http://mydomain.tld/sig_9.png
?? Not sure where your image.php file is located.
Pc 1203
08-10-2007, 06:03 PM
Ok, here's where it is:
mydomain.com/dev/profilesys/image.php
I'm calling it from:
mydomain.com/dev/profilesys/sig_9.png
Here is what I want:
mydomain.com/dev/profilesys/sig_9.png
to point to:
mydomain.com/dev/profilesys/image.php?u=9
- Pc1203
__________________________________________________ _______________
EDIT: Here is the "working" code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^sig_(.+)\.png/?$ image.php?u=$1
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.