I am new to using .htaccess files and have beed using mod_rewrite.
But now the index page of my website will not load. I just get
HTTP 500 Internal Server Error.
Other pages work. It is just the index that doesn't.
The contents of my .htaccess file:
Code:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([a-z]+)/([a-z]+)$ $1.php?do=$2
RewriteRule ^([a-z]+)/([0-9]+)$ $1.php?do=$2
RewriteRule ^([a-z]+)$ $1.php
RewriteRule logout login.php?logout
RewriteRule steam create.php?do=steam
RewriteCond %{http_host} ^www\.fmcard\.co\.uk [NC]
RewriteRule ^(.*)$ http://fmcard.co.uk/$1 [R=301,NC]
</IfModule>