PDA

View Full Version : Help :(



martian2k4
07-21-2005, 11:04 AM
I am mod rewritting a site and there is a page that is listarticles.php?category=category. I need to turn that into category-category.html and i can't use ID's any 1 got any ideas?

shield
07-21-2005, 02:11 PM
You need to put something like this into a .htaccess file:


RewriteEngine On
RewriteRule ^category-(.*).html/$ /listarticles.php?category=$1 [L]

Try that :)

martian2k4
07-21-2005, 04:10 PM
Thanks m8, Great help!

Martian2k4 virtually b!t** slaps Python with a wet fish to say thanks :D

shield
07-21-2005, 04:19 PM
no prob :)