location /test1/ {
rewrite ^/test1/(\w+)/(\d+).html$ /test1/$1/test1.php?qh=$2 last;
rewrite ^/test1/(\w+)/p(\d+)/$ /test1/$1/test1.php?topage=$2 last;
root /web/test.com/;
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000; #php5.6
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
location /test2/ {
include rewrite.txt;
root /web/test.com/;
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9001; #php8.1
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
把这个改成你自己的网站写到配置文件里面,注释掉include enable-php-81.conf;
1
666