phpMyAdmin是一个用于管理MySQL数据库的免费开源工具。当在Ubuntu 18.04上使用Nginx作为Web服务器时,如果phpMyAdmin显示404未找到错误,可能是由于以下原因导致的:
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
}
/usr/share/phpmyadmin/
。sudo service nginx restart
/etc/php/7.2/fpm/php.ini
,并确保以下配置项已正确设置:cgi.fix_pathinfo=0
sudo apt-get install php-mbstring php-gettext
推荐的腾讯云相关产品:腾讯云数据库MySQL、腾讯云云服务器(CVM)。
腾讯云数据库MySQL产品介绍链接地址:https://cloud.tencent.com/product/cdb
腾讯云云服务器(CVM)产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云