Heres the code from my header.php file. I need to change the /index.php homepage link into a simple website.com/ because thats what my homepage link is. <div id="navbar"><div id="navbar-left"><div id="navbar-right"> <table cellpadding="0" cellspacing="0" width=100%><tr><td> <table cellpadding="0" cellspacing="0"><tr> <td><a href="index.php">{$lng.navbar.home}</a></td> [CODE] Code (markup):
Change this <td><a href="index.php">{$lng.navbar.home}</a></td> To: <td><a href="/">{$lng.navbar.home}</a></td>
You cant do this, as it will create an infinite loop. Since mysite.com/ is normally requesting index.php, it will infinitely loop.
in the .htaccess file Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.example.com [R=301,L]