-2
因此,我最近爲我的一個網站編寫了一個PHP API,但我試圖將其刪除?.htaccess不刪除這個:index.php?
隨着index.php
讓我們說,我去http://api.url.com/index.php?Method
我可以真的去http://api.url.com/Method和它的工作一樣會。
我試過其他.htaccess的但似乎沒有任何工作。
因此,我最近爲我的一個網站編寫了一個PHP API,但我試圖將其刪除?.htaccess不刪除這個:index.php?
隨着index.php
讓我們說,我去http://api.url.com/index.php?Method
我可以真的去http://api.url.com/Method和它的工作一樣會。
我試過其他.htaccess的但似乎沒有任何工作。
寫下面的代碼在.htaccess文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
這是行不通的。我已經重新啓動apache2。它只是404時,我去http://api.url.com/Method=Test (我用我的網址替換url.com) –
顯示我的編輯答案 –
這也不起作用。我已經確認mod_rewrite已啓用並安裝在我的ubuntu 14.04 apache2安裝中。它仍然會返回一個404 –