Hi All,
I am having a little bit of trouble with this:
PHP Code:
RewriteEngine On RewriteRule ^(.*)/(.*)/(.*) map_handle.php?file=$3&username=$1&folder=$2
But the $1 should stop at the first / and the rest should be in the $2 until the last / where it should be in $3
atm i am getting this:
PHP Code:
username = test/materials/decals/custom/mani_admin_plugin folder = mani_admin_plugin file = mani_logo.vtf
When I want:
PHP Code:
username = test folder = materials/decals/custom/mani_admin_plugin file = mani_logo.vtf
Please help
|