Okay,
Here is my existing .htaccess
<Files directory>
ForceType application/x-httpd-php
</Files>
I tried the code in this post and got the 500 error.
Then I tried this code from the FAQ, and got the 500 error. So have I got something wierd going on?
Files directory>
ForceType application/x-httpd-php
#SetHandler application/x-httpd-php
#SetHandler application/x-httpd-php5
#ForceType x-httpd-php
</Files>
## add mod rewrite rules
RewriteEngine On
RewriteBase /
#make /directory/ act as index
RewriteRule ^$ /directory/ [L]
RewriteRule ^index\.(php|htm|html)$ /directory/ [R]
RewriteRule ^index\.....$ /directory/ [R]
# Redirect non WWW to WWW
RewriteCond %{HTTP_HOST} ^aboutjonesboro\.com
RewriteRule (.*)
http://www.aboutjonesboro.com/$1 [R=301,L]