美文网首页
Thinkphp默认读取admin.php作为首页

Thinkphp默认读取admin.php作为首页

作者: BugLuv | 来源:发表于2017-12-13 10:34 被阅读0次

    修改htaccess

    <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>
    看到这个配置没有?
    <IfModule mod_rewrite.c>
    Options +FollowSymlinks -Multiviews
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$admin.php/$1 [QSA,PT,L]
    </IfModule>
    这样改一下

    相关文章

      网友评论

          本文标题:Thinkphp默认读取admin.php作为首页

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