PHP - Passing data from a site to another site securely

后端 未结 3 1457
走了就别回头了
走了就别回头了 2021-02-06 06:20

I have a site that can take requests from multiple sites. Sort of like a upgrade check. These sites will send info like user names, passwords, app version etc, then my site will

3条回答
  •  醉梦人生
    2021-02-06 07:00

    Use .htaccess to modify and cloak the url of your website. eg:

    www.mysite.com/index.php?cat=1234&foo=5678
    

    will be looking like:

    www.mysite.com/cat-1234-foo-5678-index.html
    

    when u successfully create the .htaccess file, both the urls will act the same.

提交回复
热议问题