我設計一個管理面板,在這裏我想是這樣的結構:htaccess的幫助:名1 /值1 /名2 /值2格式
siteadmin.com/action/edit/id/1/
應返回的查詢字符串:
action => edit
id=>1
OR
siteadmin.com/action/add/
其SHD回報:
action =>add
總之,我想要的東西像name1/value1/name2/value2結構。這裏是我寫的:
RewriteRule ^([^/]+)/([^/]+)/ index.php?$1=$2
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/ index.php?$1=$2&$3=$4
但它也採取了index_php。任何幫助傢伙?
謝謝,
只用mod_rewrite是不可能的。 – zerkms 2011-01-10 09:12:24