tp5 隐藏index.php 邓士鹏

时间:2023-03-08 19:27:40
tp5 隐藏index.php 邓士鹏

tp5 隐藏index.php

--------------------------------------------------------------------------------------------

<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>
----------------------------------------------------------------- ==================================================================
【宝塔面板-隐藏index.php方式】eg:——————【亲测100%有效!!!】

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

  }
}


tp5 隐藏index.php 邓士鹏 tp5 隐藏index.php 邓士鹏


==================================================================

tp5 隐藏index.php 邓士鹏

tp5 隐藏index.php 邓士鹏