使用.Htaccess隱藏?id = 22可以隱藏來自url(rozgaarexpress.com/profile.php?id=22)的獲取值。 然後URL看起來rozgaarexpress.com/profile.php如何從URL中隱藏GET參數
My first page demo.php
I am just passing this url
<a href="profile.php?id=22">HTACCESS</a>
second page profile.php
<?php
$id=$_GET['id'];
echo $id;
?>