1.phpmyadmin官网下载多语言包


2.找到libraries目录下的config.default.php
1)查找$cfg['PmaAbsoluteUri']
设置默认访问网址


2)查找$cfg['Servers'][$i]['host']
$cfg['Servers'][$i]['port']
设置默认访问主机和端口号


3)查找$cfg['Servers'][$i]['user']

$cfg['Servers'][$i]['password']
设置数据库账号密码


4)查找$cfg['Servers'][$i]['auth_type'] = 'cookie'
设置phpmyadmin访问类型

 

3.修改http.conf文件如下
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-23
  • 2021-07-02
  • 2021-10-17
  • 2022-12-23
  • 2021-08-05
  • 2021-10-18
猜你喜欢
  • 2022-12-23
  • 2021-11-20
  • 2021-10-11
  • 2021-04-24
相关资源
相似解决方案