I have installed a PHP program onto my godaddy shared host (linux) account. I am now getting 404 errors. I have contacted support for the program but have not heard back. From what I am reading on various forums, there seems to be an implication that I need to change something in the .htaccess file.
The only .htaccess file is in the "jem" (this is the folder for the program) folder (which is in public_html), and it says:
#Options -Indexes
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
</ifModule>
Does anyone have any ideas as to why I am getting 404 errors? Thx in advance!