该方法涉及到回调地址及伪静态的设置。
1.伪静态:将伪静态添加子目录名称,如下
location /子目录/ { if (!-e $request_filename) { rewrite ^/子目录/(.[a-zA-Z0-9\-\_]+).html$ /子目录/index.php?mod=$1 last; } rewrite ^/子目录/pay/(.*)$ /子目录/pay.php?s=$1 last; } location ^~ /子目录/plugins { deny all; } location ^~ /子目录/includes { deny all; }