2014-05-06 59 views
0

我有一個php文件數量的自定義文件夾。我想通過從URL中刪除.php來創建一個友好的URL。因此,我在自定義文件夾中創建了.htaccess文件,其中所有的.php文件位於並寫入了下面的代碼,但它不起作用。將url更改爲友好的網址php

我的網址是:magento/cl/unilever.php

預期網址:magento/cl/unilever

的.htaccess包含:

Options +FollowSymLinks 
RewriteEngine On 
RewriteRule ^unilever $ unilver.php 

回答

0

假設你想重寫只是單獨的目錄,試試這個:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(\w*)$ $1.php [L] 
+0

我已將此代碼複製到.htaccess,它不起作用 – user2720197

+0

我測試過了,它正在工作。 'mod_rewrite'是否被啓用?或者它只是重寫規則不起作用? –

+0

mod_rewrite已啓用,重寫在此處不起作用 – user2720197