centos+Nginx + PHP+mysql,请问我怎么开启rewrite

2024年11月20日 20:44
有1个网友回答
网友(1):

nginx serve里面可以配置
例如:
location / {
index index.html index.htm index.php;
rewrite ^/(.*)/(.*)/(.*)\.html /$1.php?name=$2&you=$3 last;
#autoindex on;
}