質問編集履歴
2
php.conf
test
CHANGED
File without changes
|
test
CHANGED
@@ -69,3 +69,141 @@
|
|
69
69
|
フォルダは/var/www/pukiwiki-1.5.1にあり、
|
70
70
|
|
71
71
|
/var/www/html/以下にin -sでリンクを貼ってあります。
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
現在pho.conf%はすでにあり設定されています
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
#
|
80
|
+
|
81
|
+
# PHP is an HTML-embedded scripting language which attempts to make it
|
82
|
+
|
83
|
+
# easy for developers to write dynamically generated webpages.
|
84
|
+
|
85
|
+
#
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
# Cannot load both php5 and php7 modules
|
90
|
+
|
91
|
+
<IfModule !mod_php5.c>
|
92
|
+
|
93
|
+
<IfModule prefork.c>
|
94
|
+
|
95
|
+
LoadModule php7_module modules/libphp7.so
|
96
|
+
|
97
|
+
</IfModule>
|
98
|
+
|
99
|
+
</IfModule>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<IfModule !mod_php5.c>
|
106
|
+
|
107
|
+
<IfModule !prefork.c>
|
108
|
+
|
109
|
+
LoadModule php7_module modules/libphp7-zts.so
|
110
|
+
|
111
|
+
</IfModule>
|
112
|
+
|
113
|
+
</IfModule>
|
114
|
+
|
115
|
+
#
|
116
|
+
|
117
|
+
# The following lines prevent .user.ini files from being viewed by Web clients.
|
118
|
+
|
119
|
+
#
|
120
|
+
|
121
|
+
<Files ".user.ini">
|
122
|
+
|
123
|
+
<IfModule mod_authz_core.c>
|
124
|
+
|
125
|
+
Require all denied
|
126
|
+
|
127
|
+
</IfModule>
|
128
|
+
|
129
|
+
<IfModule !mod_authz_core.c>
|
130
|
+
|
131
|
+
Order allow,deny
|
132
|
+
|
133
|
+
Deny from all
|
134
|
+
|
135
|
+
Satisfy All
|
136
|
+
|
137
|
+
</IfModule>
|
138
|
+
|
139
|
+
</Files>
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
#
|
148
|
+
|
149
|
+
# Allow php to handle Multiviews
|
150
|
+
|
151
|
+
#
|
152
|
+
|
153
|
+
AddType text/html .php
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
#
|
158
|
+
|
159
|
+
# Add index.php to the list of files that will be served as directory
|
160
|
+
|
161
|
+
# indexes.
|
162
|
+
|
163
|
+
#
|
164
|
+
|
165
|
+
DirectoryIndex index.php
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
# mod_php options
|
170
|
+
|
171
|
+
<IfModule mod_php7.c>
|
172
|
+
|
173
|
+
#
|
174
|
+
|
175
|
+
# Cause the PHP interpreter to handle files with a .php extension.
|
176
|
+
|
177
|
+
#
|
178
|
+
|
179
|
+
#
|
180
|
+
|
181
|
+
# PHP is an HTML-embedded scripting language which attempts to make it
|
182
|
+
|
183
|
+
# easy for developers to write dynamically generated webpages.
|
184
|
+
|
185
|
+
#
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
# Cannot load both php5 and php7 modules
|
190
|
+
|
191
|
+
<IfModule !mod_php5.c>
|
192
|
+
|
193
|
+
<IfModule prefork.c>
|
194
|
+
|
195
|
+
LoadModule php7_module modules/libphp7.so
|
196
|
+
|
197
|
+
</IfModule>
|
198
|
+
|
199
|
+
</IfModule>
|
200
|
+
|
201
|
+
```
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
とphp.confが書かれています
|
1
フォルダの位置
test
CHANGED
File without changes
|
test
CHANGED
@@ -63,3 +63,9 @@
|
|
63
63
|
Apache2.2.15-60
|
64
64
|
|
65
65
|
PHP-7.0.21-1
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
フォルダは/var/www/pukiwiki-1.5.1にあり、
|
70
|
+
|
71
|
+
/var/www/html/以下にin -sでリンクを貼ってあります。
|