I recently migrated my website from Dream ocean to hostgator but some of the links and signup form stopped working at http://www.smartynight.com/ The only link that works is http://www.smartynight.com/about Other links return a 404 response and the login system does not send form data.
My .htaccess code:
Options -MultiViews
RewriteEngine On
RewriteBase /
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
when i delete the codes in the .htaccess file, the about link that was working before just stops. pasting the codes back fixes the about page
All pages are located at resources/views/pages/ And the routes points to that folder