2011-08-16 195 views

回答

1

如果出於任何原因,你需要把它在單一的規則,你可以使用這個:

RewriteRule ^content/(.*)-?(\d+)$ action/index.php?id=$2 [R] 

但更可讀的解決方案是使用兩個規則:

RewriteRule ^content/(\d+)$ action/index.php?id=$1 [R] 
RewriteRule ^content/.*-(\d+)$ action/index.php?id=$1 [R]