2013-10-12 1085 views
0

我有以下url需要重寫.htaccess 例如,我要使用網站的新聞部分。.htaccess重寫將不起作用或被覆蓋

www.example.com/news/    -works 
www.example.com/news/latest/  -works 
www.example.com/news/1/this-is-news -does not work 

這是我當前用於「新聞」部分的.htaccess的一部分。

RewriteRule ^news/? index.php?view=news [L] 
RewriteRule ^news/([^/\.]+)/([0-9]+)/?$ index.php?view=news&task=$1&page=$2 [L] 
RewriteRule ^news/([0-9]+)/?$ index.php?view=news&id=$1 [L] 

回答

0

嘗試一下本作的最後一個條目:

^news/([0-9]+)/[0-9a-z\-]*$ 

它會解決它,使任何數字,字母,在最後一個斜線破折號會被抓住,所以它會符合您的例子,至少。

+0

thx,這工作 – rokkz