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.
すべてのサブディレクトリを .htaccess 経由で Web サイトのルートにリダイレクトしようとしています! サブディレクトリにアクセスしようとすると、以下のコードは正常に機能します...しかし、リダイレクトのループが開始されるため、ルートにインデックスページを表示できません!
RedirectMatch temp ^/.*$ http://localhost/
どうすればこれを解決できますか?
すべてのサブディレクトリをホームページにリダイレクトする場合は、次のようにします。
RedirectMatch temp ^/.+/.*$ http://localhost/
これは、スラッシュが 2 つあり、その間に少なくとも 1 文字ある URI に一致します。