RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$ index.php?page=$1
There is an error on my .htaccess file. On my index page, I have a PHP that checks what the $_GET[‘page’] is, and it returns index.php when I type in domain.com/home.
I want it to return as home when I type in domain.com/home
You need to keep your rules from looping. Try adding a condition that prevents rewrite if the URI is already
index.php: