Recently, I have hosted a website using godaddy. When I enter the domain name in url first page is loading without error, Now when I click on any link or button on the first page[home page], it is giving 404: file not found error.
EDIT: .htaccess file from root folder:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
php_value upload_max_filesize 200M
php_value post_max_size 200M
php_value max_input_time 3600
php_value max_execution_time 3600