In my site you can open pages like this…
example.com/?controller=index&action=index
I want to make links nicer so I use mod_rewrite…
RewriteRule ^([^/]+)/(.*)$ index.php?controller=$1&action=$2 [L,QSA]
It works perfectly and result is somehow like this…
example.com/index/index
But my problem is that this link, where is set only the 1st variable won’t work. Don’t know how to fix it! This won’t work…
example.com/index
Do something like this: