I'm really fed up. I've tried everything to get my pretty permalinks, but I still end up with either 500 or object not found messages. I am still trying to get it working in a local environment. I have Override set to all in my http.conf file and my http-xammp.conf file, FollowSymLinks in place and here's my .htaccess file:
Options -Indexes
Options +FollowSymLinks
# BEGIN WordPress
RewriteEngine On
RewriteBase /xampp/wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ /?file_name=$1 [L,QSA]
RewriteRule ^([^/]+/[^/]+)/([^/]+)/([^/]+)(/.+)?$ $1$4?$2=$3 [QSA,N]
RewriteCond $1 !.+\.xyz$
RewriteRule ^([^/]+/[^/]+)$ $1.xyz [L]
# END WordPress
but I still end up with errors! I'm new to the whole htaccess thing so any help would be greatly appreciated.
The error I'm getting now is:
"C:/xampp/htdocs/xampp/wordpress/.htaccess: RewriteEngine not allowed here, referer: http://www.mydomain.com/xampp/wordpress/wp-admin/options-permalink.php"
but I'm an administrator and I have full control? Any thoughts?