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.
たとえば、
fakesite.com/folder1/example1.php fakesite.com/folder2/folder2a/example1.php fakesite.com/folder3/example1.php
all は example1.php を の内容で書き換えます。. .
fakesite.com/example2.php
これは、サーバー上のさまざまなフォルダーにある多数のファイルで発生するため、単純な書き換えでは機能しません。
Apache を使用していると仮定して、以下を試してください。
RewriteEngine On RewriteRule example1.php /example2.php [L]
これは mod_rewrite の非常に基本的なものであり、「apache rewrite examples」をグーグルで検索すると、これが得られます。