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.
動的検索ページについてサポートが必要です。変更する必要があります:
/download.php?q=search
に
/download.php?mp3=search
そのため、検索ページのみ q を mp3 に変更する必要があります。誰かが助けてくれれば幸いです。.htaccess を介してこれを行いたい
前もって感謝します
そんな感じ:
RewriteRule ^/download.php?q=(.*) /download.php?mp3=$1 [L]
クエリ文字列は、RewriteCond の変数としてのみ使用できます。このようなものが動作するはずです:
RewriteCond %{QUERY_STRING} q=([^&]*) RewriteRule ^download.php download.php?mp3=%1 [L,QSA,NC]