Rewrite 发表于 2015-02-01 分类于 技术宅 Disqus: nginx for wordpress 12345location / { root /data/Yvanz; index index.html index.htm index.php; try_files $uri $uri/ /index.php?q=$uri&$args;} nginx for thinkphp 1234567location / {index index.php;if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=$1 last;break; }}