apache
- httpd.conf 去掉;(开启重写模块)
- 在vhost.conf中配置虚拟主机,配置重写规则
nginx
1.nginx.conf 或者虚拟域名下
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
apache
nginx
1.nginx.conf 或者虚拟域名下
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}