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.
www.domain.com/folder1 と他のすべてのサブディレクトリ (例: www.domain.com/folder1/filename.php) をインデックス ページにリダイレクトしたいと考えています。つまり、ユーザーは folder1 とそのサブディレクトリにアクセスできず、代わりにインデックス ページにリダイレクトする必要があります。
このコードを試してください:
RewriteEngine On RewriteRule ^folder1/(.*)$ /index.php [R=301] RewriteRule ^folder1$ /index.php [R=301]