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.
「prj」というテスト プロジェクト フォルダがあります。その中に、test.php というファイルが 1 つあります。
http://localhost/prj/test.php?t=123
のように書き換える必要があります
http://localhost/prj/test.php
どんな助けでも大歓迎です
次を使用して .htaccess ファイルを作成します。
RewriteEngine on RewriteRule ^prj\/test.php$ prj/test.php?t=123 [NC]
編集
htaccess ファイルが prj フォルダーにある場合:
RewriteEngine on RewriteRule ^test.php$ test.php?t=123 [NC]