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.
ユーザーがページにいるとしましょう --> mysite.com/product.php?id=5 で、?id=5 と r= を手動で削除すると、URL はこのようになりました --> mysite.com/product.php
どうすれば彼をホームページにリダイレクトできますか?
ID がクエリ文字列にないかどうかを確認するだけです。その場合は、リダイレクトを行います。
if (!isset($_GET['id']) || empty($_GET['id'])) { //redirect }