我正在嘗試使用 Nginx 配置 Adminer。這是我的 adminer.conf:
server {
listen 80;
location /adminer {
root /usr/share/webapps/adminer;
index index.php;
}
}
但是,當我去localhost/adminer我得到錯誤/usr/share/webapps/adminer/adminer/index.php is not found (No such file or directory)。
該adminer檔案夾重復,我不知道為什么。該位置應決議為/usr/share/webapps/adminer/index.php。
uj5u.com熱心網友回復:
位置應該只是
/從/usr/share/webapps/adminer為localhost/adminer從/usr/share/webapps為localhost/adminer
server {
listen 80;
location /adminer {
root /usr/share/webapps/;
index index.php;
}
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/357686.html
