apache PHP 隐藏 index.php 报错 No input file specified. 解决办法
Posted 遗失的美好灬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache PHP 隐藏 index.php 报错 No input file specified. 解决办法相关的知识,希望对你有一定的参考价值。
在.htaccess中修改(如果是框架,则在public下的.htaccess)
<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>
OJBK
以上是关于apache PHP 隐藏 index.php 报错 No input file specified. 解决办法的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 下apache2开启rewrite隐藏index.php
apache 配置rewrite模块,URL中隐藏index.php
TP5配置隐藏入口index.php文件,Apache/phpstudy