Heim > Fragen und Antworten > Hauptteil
Die URL lautet
http://aaa.com/xxxx
oder http://aaa.com/xxxx?id=bbb
So schreiben Sie die Konfigurationsdatei, die in
http://aaa.com/index umgeschrieben werden soll. php?p =xxxx
oder http://aaa.com/index.php?p=xxxx&id=bbb
巴扎黑2017-05-16 17:18:31
可以参考:
资料来源
location / {
.........
##如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
if (!-e $request_filename)
{
rewrite ^/PHPParser/(.*)$ /PHPParser/index.php?s=$1 last;
break;
}
}