2013-07-11 87 views
0

我有網址是這樣的:獲取一個URL的最後一部分作爲GET參數

http://example.com/foo/bar/de/ 
http://example.com/foo/bar/en/ 

哪個重寫規則我一定要利用最後的「文件夾」前加載URL(http://example.com/foo/bar/),並得到這個「文件夾」作爲GET參數(例如lang=de

回答

0

類似這樣;

RewriteEngine on 
RewriteRule ^([a-zA-Z0-9_-]+)/foo/bar/$ index.php?lang=$1 
+0

謝謝,我已經試過了,但我得到一個404錯誤,原因最後的/ en,/ de,/ ..目錄並不存在 – Slevin

相關問題