I am trying to pass the url: categories/examplecategories.php?category=$1
using: categories/drinkcategories/(.*).html$
However, the variable that I am passing has a "/" in it. So, lets say I am passing the category AC/DC. When it is urlencoded it looks like..AC+/+DC.
Using (.*) isn't passing the "/" because it thinks that I am opening a new folder and cuts off the DC part, which results in Epic Fail.
Anyone know how to use Regex and .htaccess to pass this "/" through my $_GET variable and change my pages?
Cheers
using: categories/drinkcategories/(.*).html$
However, the variable that I am passing has a "/" in it. So, lets say I am passing the category AC/DC. When it is urlencoded it looks like..AC+/+DC.
Using (.*) isn't passing the "/" because it thinks that I am opening a new folder and cuts off the DC part, which results in Epic Fail.
Anyone know how to use Regex and .htaccess to pass this "/" through my $_GET variable and change my pages?
Cheers