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.
私はhtaccessでこれをやろうとしています:
domain.com/folder/index.php?ref=001 から domain.com/?ref=001
どんな助けでも大歓迎です.....
ありがとう!!!
ブラウザをリダイレクトしたいだけです。
mod_alias のいずれかを使用できます。
Redirect /folder/index.php /
または mod_rewrite:
RewriteEngine On RewriteCond %{QUERY_STRING} ref= RewriteRule ^/?folder/index.php$ / [L,R]