Rewriting the Geeklog Pollbooth urls

Sunday, September 12 2004 @ 02:07 AM

Contributed by: Admin

When you are viewing any Poll links in geeklog they are usually expressed as /pollbooth.php?qid=pollnumber&aid=idnumber
so i hacked that into
/pollbooth/pollnumber/idnumber/

Then created a new folder called pollbooth and then created a .htaccess document in this new folder. the Mod_Rewrite rules in this doc are:

RewriteBase /pollbooth/
RewriteEngine on
RewriteRule ^(.*)/(.*)/$ /pollbooth.php?qid=$1&aid=$2



http://modrewrite.gldir.com/20040912020712227.html