问答详情
源自:4-5 写在最后

.htaccess 之 index.php

搞了小半个月 index.php  还是无法隐藏  请问这个跟 环境有问题吗?

我用CI上的 .htaccess 文件放到根目录 不行

我用TP上的 .htaccess 文件放到根目录 也不行

下面是看视频写的代码代码

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

</IfModule>

//一下是报错信息

No input file specified.

没有输入文件指定。


提问者:helloTl 2016-08-25 15:31

个回答

  • 李虎头
    2016-08-25 17:12:15

    • 需要apache开启重写模块

    • apache中Alloverwrite 需要为 all

    • nginx有单独的写法