我有一個重寫規則是這樣的:htaccess的重寫規則保存查詢字符串
RewriteRule ^thesection$ /sections.php [L]
RewriteRule ^thesection/(.*)$ /sections.php?show=$1 [L]
所以,如果我進入domain.com/thesection
- >它可以完美運行
但如果!我進入domain.com/thesection/hello
重定向到domain.com/thesection?show=hello
我不知道我在做什麼錯,我花了數小時搜索。請幫忙!
在此先感謝
什麼是'domain.com/thesection/hello'應該得到改寫爲? –
嗨喬恩,domain.com/thesection/hello應該被服務器解釋爲domain.com/sections.php?show=hello 謝謝! – Marsupial000