I have been trying to create redirects for /home and /index.php to the site’s base url. I have tried following rules in htaccess but without any effect
RewriteRule ^(.*)\index.php$ $1 [R=301,L]
RewriteRule ^home$ /
Im new to it so kindly bear with me if its a trivial question for the experts
Thanks in advance to the wonderful people here that are kind enough to help.
This will not work. All requests for nonexistent files and directories (like /node/42) are in fact redirected to /index.php (like /index.php?q=node/42). This whole mechanism breaks down if you try to redirect away from index.php.