0
我用這對我重寫幫助創建URI重寫使用重寫規則
RewriteRule ^site/(.*) index.php?rewrite=$1 [L]
RewriteRule (.*)\.xml(.*) $1.php$2 [nocase]
我開始逐步本網站成爲一個僞MVC體系和真正需要上述讀
1. If the directory is NOT ^site/public/* OR ^site/assets/* or (etc) then re-write the url as index.php?rewrite=$1 (I'm basically trying to replicate the first rule above for all cases except a couple).
2. ALSO, go ahead and rewrite all .xml pages to be changed to .php