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.
ファイル 1.php へのすべてのクエリをファイル 2.php にリダイレクトする必要があります。したがって、誰かが 1.php サーバーに 2.php を提供するように依頼する必要があります。1.php と 2.php は同じフォルダにあります。
RewriteEngine On RewriteRule ^2.php 1.php
htaccess のこのコードは機能しません。間違いはどこですか?
これを試して:
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www.)?[the folder]/1.php$ RewriteRule ^(/)?$ [the folder]/2.php [L]