回答編集履歴
2
加筆
test
CHANGED
@@ -33,3 +33,19 @@
|
|
33
33
|
|
34
34
|
|
35
35
|
[【apache】特定のディレクトリの中はphpを実行できないようにする at softelメモ](https://www.softel.co.jp/blogs/tech/archives/2841)
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
---
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
あるいは、ファイルのダウンロード処理用phpを起こして、
|
44
|
+
|
45
|
+
Content-Disposition: attachment; filename="~~~.php"
|
46
|
+
|
47
|
+
ってなるような応答ヘッダーを作れば、それでもいいかもね。
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
[【PHP】正しいダウンロード処理の書き方 - Qiita](https://qiita.com/fallout/items/3682e529d189693109eb)
|
1
加筆
test
CHANGED
@@ -21,3 +21,15 @@
|
|
21
21
|
ダウンロード用phpファイル置き場のディレクトリを決めて、
|
22
22
|
|
23
23
|
そのディレクトリでphpを実行しないように対策するってことです。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
apache httpdをwebサーバーにつかっている場合、
|
28
|
+
|
29
|
+
かつ.htaccessにてディレクトリ単位で設定変更ができる場合は、
|
30
|
+
|
31
|
+
この事例が参考になるでしょうか。
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
[【apache】特定のディレクトリの中はphpを実行できないようにする at softelメモ](https://www.softel.co.jp/blogs/tech/archives/2841)
|