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.
header.php、 などindex.phpの他の PHP ファイルには常に含まれています。member.php
header.php
index.php
member.php
クライアントが にアクセスできないようにするにはどうすればよいheader.phpですか?
の上部にindex.php、次を追加します。
define('AUTHORISED_TO_INCLUDE', 1);
の上部にheader.php、次を追加します。
if(!defined('AUTHORISED_TO_INCLUDE')) die();