phpmyadmin未正确加载

时间:2019-06-19 08:32:54

标签: php mysql nginx phpmyadmin

我试图登录到我试图访问的phpmyadmin(EC2实例)

domain.com/phpmyadmin没有加载,然后我输入了domain.com/phpmyadmin/index.php。登录后,我看到我的phpmyadmin完全混乱

enter image description here

可能是什么原因?非常感谢您的帮助。谢谢!

1 个答案:

答案 0 :(得分:1)

尝试使用.htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]

htaccess remove index.php from url

https://help.dreamhost.com/hc/en-us/articles/215747748-How-can-I-redirect-and-rewrite-my-URLs-with-an-htaccess-file-