やりたいこと
リンクの記事に沿ってディレクトリ制限をphpで制御する方法が掲載されていたので自分もさっそくやってみたのですが、
Not Found The requested URL /test/access.php/test.jpg was not found on this server. ]
と出てしまいました。
.htaccessには、
Action image/jpeg /test/access.php
と書きました。
phpには、
php
1 $filenames="test/".basename($_SERVER['SCRIPT_NAME']); 2 header('Content-type: image/jpeg'); 3 readfile($filenames); 4
と書いたのですが、
Not Found The requested URL /test/access.php/public/test/test.jpg was not found on this server.
と意味わからないリンクに飛ばされてしまっています。
どのようにすればよいでしょうか。
ちなみにtestディレクトリにaccess.php と test.jpgを配置しております。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。