My application works fine in my local server, but after moving to Mochahosting i am not able to load any pages, all menus appear but then if i click any menu link, the same thing is seen.
I have tried differen scripts in htaccess files in project folder and api folder
This how it is: ----------------------------------------- #/home/apismv/public_html/.htaccess RewriteEngine On RewriteBase /public_html/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ index.php [QSA,L] ---------------------------------------------------- #/home/apismv/public_html/api/.htaccess RewriteEngine On RewriteBase /public_html/api/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ index.php [QSA,L]
I have checked everything from hosting server side, they said, .htaccess is enabled. Additionally, directories are set to 755 and files to 644, and Options +FollowSymLinks directive are also added.
Could please help to get over this situation.
Thank you