Heim > Fragen und Antworten > Hauptteil
Das Web-Stammverzeichnis befindet sich unter root "/phpstudy/www/xxx";
Aber das statische Verzeichnis im Programm ist www/static
Das heißt, auf die Domain/www/static/xxxx.jpg kann bei Anfrage zugegriffen werden
Wie verstecke ich www?
天蓬老师2017-05-16 17:15:54
配置
location /phpstudy/static/ {
alias /usr/local/nginx/html/phpstudy/www/static/;
}
使用alias
映射一个虚拟目录即可。
访问地址 http://[ip]/phpstudy/static/a.txt