0
我正在嘗試重寫Dreamhost服務的網站的URL。在Dreamhost上重寫URL
我要做到以下幾點:
目標:
與一個x
開始
僅重寫的URL。
此:
http:// domain.com/x23
應該改爲:
http:// domain.com/index.php/lookup/code/x23
我嘗試這樣做:
RewriteEngine On
RewriteRule ^(x[0-9a-z])$ index.php/lookup/code/$0 [L]
但它似乎沒有工作。
我錯過了什麼?
真棒感謝您的回答。以某種方式使它在Dreamhost上工作我還需要在php - > RewriteRule ^(x [0-9a-z] +)$ index.php?/ lookup/code/$ 0 [L]後添加問號 任何想法爲什麼? – mistero 2009-09-18 17:50:03
@mschoening:可能* AcceptPathInfo *未打開(請參閱http://httpd.apache.org/docs/2.2/mod/core.html#acceptpathinfo)。 – Gumbo 2009-09-18 17:51:33