thinkphp nginx rewrite

1、修改网站.conf

loaction / {

index index.php

if (!-e $request_filename){

    rewrite ^(.*)$ /index.php?s=/$1 last;

    break;

}

}

2、保存重启ng

3、修改tp config

'URL_HTML_SUFFIX' => '.html',

'URL_MODEL' => 2,


你可能感兴趣的:(thinkphp nginx rewrite)