|
I’m getting this 404 error:
Not Found
The requested URL /cgi-bin/php5-cgi/beta/magento/index.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
It’s getting a 404 because the magento folder is actually located in:
/html/beta/magento/index.php
This is what I’m using for .htaccess:
php_flag magic_quotes_gpc off
php_flag short_open_tag on
Action php5-cgi /cgi-bin/php5-cgi
AddHandler php5-cgi .php
DirectoryIndex index.php
RewriteEngine on
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
Any ideas how I can fix this?
|