My dillemma is this:
I have a test website that is an MVC framework I built. The test site is in a subdomain on a GoDaddy shared hosting account. The address to the test site is test.website.com and the root folder for the test site is /root/test. I had a .htaccess file to route all reqests in it but was getting 500 Internal Server Errors. When I removed the .htaccess file the home page worked but no links did. I got 404 Errors for them. I guess I need to modify my .htaccess file to get everything to work. Here is my current one"
php_flag display_errors on
php_value error_reporting 9999
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
I admit I am not very good with mod_rewrite, regex, or .htaccess so any help is greatly appreciated.