经常配置新项目时候 要做伪静态
隐藏 index.php
为了方便使用 贴上 nginx
隐藏 index.php
的配置代码
直接复制使用即可~
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
经常配置新项目时候 要做伪静态
隐藏 index.php
为了方便使用 贴上 nginx
隐藏 index.php
的配置代码
直接复制使用即可~
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}