i need some htaccess code which does this
http://sigchat.fyepro.com/sigs/<user>.jpeg would not redirect but display http://sigchat.fyepro.com/image.php?user=<user>
<user> is a variable
I will pay 500 credits for it.
i need some htaccess code which does this
http://sigchat.fyepro.com/sigs/<user>.jpeg would not redirect but display http://sigchat.fyepro.com/image.php?user=<user>
<user> is a variable
I will pay 500 credits for it.
Last edited by Christopher; 06-15-2008 at 02:30 AM.
Try this:
NOTE: If the variable contains only letters instead of only numbers change ([0-9]+) to ([a-z]+). If the variable contains both letters and numbers change ([0-9]+) to ([a-z0-9]+)Code:RewriteEngine On RewriteRule ^sigs/([0-9]+)\.jpeg$ /image.php\?user=$1 [NC,L]
Post back if it doesn't work, I may have made a typo.
Last edited by TechAsh; 06-15-2008 at 03:55 AM.
Useful Links:My Websites:
Terms of Service | Server News | Buy a Domain
Free Domains: co.cc | Dot.tk -- Free File Storage: Dropbox -- Website Monitoring: Service Uptime
Earthtime Games & TechAsh's Blog
Thanks!
I'll send you the credits when I can.
Thanks, I've just noticed that I've received the credits.
I guess this can be closed now.
Useful Links:My Websites:
Terms of Service | Server News | Buy a Domain
Free Domains: co.cc | Dot.tk -- Free File Storage: Dropbox -- Website Monitoring: Service Uptime
Earthtime Games & TechAsh's Blog