时间:2021-07-01 10:21:17 帮助过:19人阅读
#Apache写法
Alias /phpmyadmin "d:/wamp/apps/phpmyadmin4.1.14/"
server {
listen 80;
server_name localhost 127.0.0.1;
root d:/localhost;
index index.html index.htm index.php;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
location /phpmyadmin/ {
alias D:/wamp/apps/phpmyadmin4.1.14;
index index.php;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ /\.(ht|svn|git) {
deny all;
}
}
127.0.0.1 - - [10/Dec/2014:10:19:07 +0800] "GET /phpmyadmin HTTP/1.1" 404 142 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0" "-"
127.0.0.1 - - [10/Dec/2014:10:19:07 +0800] "GET /favicon.ico HTTP/1.1" 404 142 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0" "-"
127.0.0.1 - - [10/Dec/2014:10:19:07 +0800] "GET /phpmyadmin HTTP/1.1" 404 142 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0" "-"
127.0.0.1 - - [10/Dec/2014:10:19:08 +0800] "GET /favicon.ico HTTP/1.1" 404 142 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0" "-"