mod_rewrite
HTTPリクエストをremapできるApacheのモジュール AllowOverride
RewriteBase
RewriteRuleで飛ばす先のベースのパスを指定する
RewriteBaseが/rewriteだった場合、RewriteRuleで/index.htmlに飛ばす設定を書くと、/rewite/index.htmlに飛ぶ
RewriteRuleを複数設定するときにBaseとなるpathを複数回書かずにすむ
[L]:
The L flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no further rules will be processed. This corresponds to the last command in Perl, or the break command in C. Use this flag to indicate that the current rule should be applied immediately without considering further rules.
デバッグ