Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すべてのURIをindex.phpに書き換える方法は?
RewriteRule . index.php
これにより、現在のディレクトリ内のファイルのみが書き換えられるため、example.org/folderは書き換えません。
そのルールがドキュメントルートのhtaccessファイルにある場合は、すべてがリダイレクトされます。の代わりに.、次のようになります.*。
.
.*
RewriteEngine On RewriteRule .* index.php