1
I’m making my system that will use htaccess-friendly URL, only I’m having a question/problem. My HTACCESS is as follows:
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1
It works when I access something like www.meusite.com.br/registration only that I have another URL that I have to access as the URL above, only this way www.meusite.com.br/view/sheet/6
VIEW = view.php FICHE = category 6 = ID
I need to pass this data to the view.php file in the folder pages
http://blog.thiagobelem.net/aprendendo-urls-amigaveis-com-regras-complexas/
– RodrigoBorth
take a look at this link... the explanation is quite complete
– RodrigoBorth