I am trying to use slashes in my url to navigate through my site. So far I can use the first value to call a class (a page), but when I use a second value (after a slash), the page becomes completely messed up and can't call my header.. Well, I hope you get what I mean and maybe help me out.
Here is my Config class, which takes care of the url navigation (mentioned above): http://pastebin.com/38rmh9U1
The url[0] calls a class, but when I add another slash at the end of my url, the header class can't be called.
And this is what I have in my .htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
Btw. I am not very strong in what should be in the .htaccess file, but I think this is about right.