Apache 2.2 ReWrite and the .htaccess file

Permalink
Ok Folks

The dreaded GoDaddy support issues. For almost a month, I have been attempting to get a site to work again after the host has upgraded their servers to Apache 2.2. I have another thread that some folks gave me some suggestions but its a no go.

I am getting the "Input File Not Found" error after selecting any link on the index.php page. I cannot even get into the login page to turn off Pretty Url's. If I could do this I would at least have a working site and will figure out the .htaccess issue later.

Anyone have a working .htaccess file they could share for GoDaddy/Domains Priced Right (yea go figure). Otherwise, can anyone tell me how to turn off Pretty URL's other than from the dashboard.

Thanks from a Frustrated Bill

bcarone
 
Mnkras replied on at Permalink Reply
Mnkras
you can go into the config table in the database to turn it off,

also try something like this

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

this code assumes the site is at the root of the domain