I have a .htaccess in my that has this line:
RewriteRule ^name/([^/]+)$ login/test.php?test=$1
So when the user types in "http://test.com/name/John", the server thinks of it as "http://test.com/login/test.php?test=John and displays the appropriate page. Now, the test.php file has an include path like "include("file.php");"
For some reason, this doesn't work...Does it have something to do with the htaccess file?
Please help!