|
I have been getting the infamous 404 error and I have searched high and low for the solution
I have also changed .htaccess dozen of times (based on different threads here) and it didn’t work.
I can’t figure out what is wrong with the .htaccess and I contacted my host (Bluehost) and they couldn’t update httpd.conf to allow “AllowOverride All”
Also, i noticed that http://mydomain.com/magento/index.php/install gives the instalation wizard but you can’t proceed after that. However,
http://mydomain.com/magento/install/ or http://mydomain.com/magento/ gives the 404 error.
Here’s my .htaccess file at magento directory (under main root).. Should I do anything to my main root’s .htaccess??
<IfModule mod_php5.c> php_flag magic_quotes_gpc off php_flag short_open_tag on </IfModule>
DirectoryIndex index.php
RewriteEngine on
#RewriteBase /
RewriteCond %{REQUEST_URI} !^/media/ RewriteCond %{REQUEST_URI} !^/skin/ RewriteCond %{REQUEST_URI} !^/js/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* /index.php
So I am stucked!! Please help!
|