2015-09-15 82 views
1

必要隱瞞這個URL隱藏URL在我的網站

http://localhost:8080/Gamesite/details.php?id=1 

此URL

http://localhost:8080/Gamesite/details.php 

已經有404重定向在.htaccess中,看起來像這樣:

ErrorDocument 404 http://localhost:8080/Gamesite/core/404.html 

但它只會重定向,如果我改變任何之前的(?)在url

我得到它的工作

+0

使用POST方法? –

+0

不,我只是從數據庫中獲取遊戲ID,然後將其顯示在details.php頁面中。例如,對於遊戲ID 1,它將是details.php?id = 1 //獲取產品ID $ id = $ _GET ['id']; $ sql =「select * from games where id ='$ id'」; $ result = $ db-> query($ sql); $ game = mysqli_fetch_assoc($ result); – David

+0

對不起,我們不能創建一個新行,導致它提交註釋 – David

回答

1

要隱藏參數,我們基本上是用POST方法來隱藏,它會使用requestHeader將數據發送到你的servlet,如果您正在使用表單提交的數據使用屬性:method = "POST"

+0

我只是從數據庫中獲取信息,然後顯示它在details.php – David

+0

然後從哪裏取id值爲1 –

+0

是的..這是做這個details.php?id = 1 – David