thinkphp 伪静态,隐藏index.php
2021-01-27 09:24:21    130    0    0
admin

nginx 

location / {
    if (!-e $request_filename){
    rewrite ^(.*)$ /index.php?s=$1 last; break;
 }
}​

 

apache

 

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>​

上一篇: React项目 招聘APP 实时在线聊天室

下一篇: thinkphp 跳转public 主页设置

130 人读过
立即登录, 发表评论.
0 条评论
文档导航