Reputation: 3209
i tried to login to my phpmyadmin (EC2 instance) i tried to visit
domain.com/phpmyadmin
it didn't load then I typed domain.com/phpmyadmin/index.php
it loads. After logging in I am seeing total mess of my phpmyadmin
What could be the reason for it? Any help is highly appreciated. Thank you!
Upvotes: 1
Views: 410
Reputation: 1
This problem is due to RewriteRule of .htaccess file. Please check .htaccess file and remove RewriteRule .*.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
Upvotes: 0
Reputation: 2762
Try with .htaccess
:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
htaccess remove index.php from url
Upvotes: 1