在相应nginx配置文件的server中,添加如下代码
rewrite ^/(.*)-htm-(.*)$ /$1.php?$2;
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
例如:
vi /usr/local/nginx/conf/nginx.conf #编辑nginx配置文件
找到下面这行,在server_name localhost;后边一行添加上面的代码
server {
listen 80;
server_name localhost;
rewrite ^/(.*)-htm-(.*)$ /$1.php?$2;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.php in...
nginx伪静态, phpwind阅读全文