1
2
3
4
5
6
7
8
9
10
11
12
13
location /phpmyadmin/ {
alias  /data/phpmyadmin/;
index  index.html index.htm index.php;
}
 
location ~ ^/phpmyadmin/.+\.php$ {
root /data/;
rewrite /phpmyadmin/(.*\.php?) /$1 break;
include fcgi.conf;
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param SCRIPT_FILENAME /data/phpmyadmin$fastcgi_script_name;
}

 

相关文章:

  • 2021-04-02
  • 2019-12-18
  • 2021-06-06
  • 2019-05-17
  • 2018-01-25
  • 2022-01-16
  • 2022-01-14
  • 2021-06-04
猜你喜欢
  • 2021-05-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
相关资源
相似解决方案