因此,這裏是我的問題..的mod_rewrite不允許AZ
這是URL我: /category.php?cat=8
這是URL我嘗試實現: /方-events /廚房/
在類別有一個ID數據庫,主要,子,main_slug和sub_slug
此:/ main_slug/sub_slug/
我有這個
RewriteRule ^([a-z]+)\/?$ $1.php [NC]
RewriteRule ^([a-z]+)\/([0-9]+)\/?$ category.php?param=$1¶m2=$2 [NC]
,輸出和工程罰款:/分類/ 8/
但..它只能與數字,沒有別的。如果我使用和字母,我會得到一個未找到的頁面。
但我失去了htaccess的正則表達式只使用主要和子slu and,而不僅僅是數字。
任何幫助,將不勝感激。
你能給我舉個例子嗎? – ValhallaSkies
'RewriteRule ^(\ w +)\ /(\ w +)/?$ category.php?param = $ 1&param2 = $ 2 [L,QSA]' – anubhava
現在加載頁面,但只識別數字而不識別文本。 。hmm .. – ValhallaSkies