So basically I want prettier URLs but I want to keep index.php in the URL! So normally you would have domain.com/home or domain.com/about BUT I want it like domain.com/index.php/home.
I'm getting info from a database with the old fashioned $_GET, mine is $_GET["p"].
So my current .htaccess file looks like this,
RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule .* - [L] RewriteRule ^(.*)$ index.php?p=$1 [NC]But this doesn't keep index.php in the URL so if you guys have any idea on how to achieve this then I would greatly appreciate you telling me