What's the best way to only allow a PHP file to be included?

后端 未结 8 2150
梦毁少年i
梦毁少年i 2021-01-04 10:07

I want to make sure people can\'t type the name of a PHP script in the URL and run it. What\'s the best way of doing this?

I could set a variable in the file that wi

8条回答
  •  灰色年华
    2021-01-04 10:27

    You could check the URI and see if that file is being called with `

    $_SERVER['SCRIPT_FILENAME']
    

    or you could move the file outside the public folder, this is a better solution.

提交回复
热议问题