2017-10-10 93 views
-1

我想用htaccess重寫我的url,當URL包含某個字符串時。htaccess如何重寫url如果url存在字符串

例子:

My url : example.com/information 

當 「信息」 是在我的網址,我要重寫我的information.php文件的文件。 希望任何人都可以幫助我。

+0

https://stackoverflow.com/a/4026967/6124528 – Manav

+0

[與htaccess的刪除PHP擴展(的可能的複製https://stackoverflow.com/questions/4026021/remove-php -extension與 - htaccess的) – Croises

回答

0

試試這個:

RewriteCond %{REQUEST_URI} !/information\.php$ 
RewriteRule information information.php [L] 

此規則將改寫包含在URL路徑「信息」在同一個目錄下information.php文件的任何請求。

Source