简单版的:

 
  
  1. url.rewrite-if-not-file = (
  2. "^/(admin|usr)/(.*)" => "/$1/$2",
  3. "^/(.*)$" => "/index.php/$1"
  4. )

 

复杂版的:

 

 
  
  1. url.rewrite-if-not-file = (
  2. "^/(.*).htm$" => "/index.php/$1.htm",
  3. "^/archives/(.*)" => "/index.php/archives/$1",
  4. "^/category/(.*)" => "/index.php/category/$1",
  5. "^/([0-9]+)/([0-9]+)/$" => "/index.php/$1/$2/",
  6. "^/tag/(.*)/$" => "/index.php/tag/$1",
  7. "^/search/(.*)/$" => "/index.php/search/$1",
  8. "^/(.*)page/(.*)" => "/index.php/$1page/$2",
  9. "^/(feed.*)" => "/index.php/$1",
  10. "^/action/(.*)" => "/index.php/action/$1",
  11. "^/(.*)comment" => "/index.php/$1/comment
  12. )

转载自:http://www.sun3.cn/361.htm