美文网首页
thinkphp伪静态的配置

thinkphp伪静态的配置

作者: 知码客 | 来源:发表于2022-09-30 23:48 被阅读0次

Apache

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

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

Nginx

  location / { // …..省略部分代码
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=/$1  last;
   break;
    }
 }

如果在二级目录

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

相关文章

网友评论

      本文标题:thinkphp伪静态的配置

      本文链接:https://www.haomeiwen.com/subject/zikjartx.html