2014-01-24 63 views
1

我已經把對XAMP htaccess的(我曾經使用過它)需要htaccess的知識

但試圖改變以下

index.php?admin&user&list 

example.com/admin/user/list 

我有一個在/admin/之後的其他幾頁。我需要爲每個頁面添加1嗎?

+1

[什麼是很多?(HTTP://hyperboleandahalf.blogspot .nl/2010/04/alot-is-better-than-you-at-everything.html) –

+0

這是否甚至重要?仍然需要幫助 –

+0

@dannii_destroyer .htaccess不是一個好的路由解決方案。看看這個最近的答案我的http://stackoverflow.com/questions/9594269/htaccess-and-user-accounts/21083766#21083766 – m59

回答

0

你可以試試:

RewriteEngine On 

RewriteCond %{THE_REQUEST} \ /+index\.php\? 
RewriteCond %{QUERY_STRING} ^(.*)&(.*)$ 
RewriteRule ^index\.php$ /index.php?%1/%2 [L,NE] 

RewriteCond %{THE_REQUEST} \ /+index\.php\? 
RewriteCond %{QUERY_STRING} !& 
RewriteRule ^index\.php$ /%{QUERY_STRING}? [L] 

這使得它如此,當你要求http://example.com/index?abc&def&ghi,規則將內部請求路由到/abc/def/ghi

+0

謝謝,會檢查出來! –