咱們先來看看官方手冊給出關於「URL 重寫」的參考:php
能夠經過 URL 重寫隱藏應用的入口文件 index.php ,Apache 的配置參考:
一、http.conf 配置文件加載 mod_rewrite.so 模塊
二、AllowOverride Node 中將 None 改成 All
三、將下面的內容保存爲 .htaccess 放置入口文件同級目錄下iview
<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>
最後,我經過修改 ThinkPHP 入口文件同級目錄下的 .htaccess 文件完成了救贖~ide
以上能解決出現 No input file specified 錯誤。code