質問編集履歴
2
質問文言修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,84 +1,10 @@
|
|
1
|
-
|
1
|
+
htmlに書かれている、php include部分が上手く読み込めず、解決方法がわからないため教えていただけると助かります
|
2
2
|
|
3
3
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
```index.html
|
8
|
-
|
9
|
-
<!DOCTYPE html>
|
10
|
-
|
11
|
-
<html lang="ja">
|
12
|
-
|
13
|
-
<head>
|
14
|
-
|
15
|
-
<meta charset="utf-8">
|
16
|
-
|
17
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
18
|
-
|
19
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<meta name="description" content="コンテンツ description">
|
24
|
-
|
25
|
-
<meta name="keywords" content="keywords">
|
26
|
-
|
27
|
-
<meta property="og:title" content="">
|
28
|
-
|
29
|
-
<meta property="og:type" content="website">
|
30
|
-
|
31
|
-
<meta property="og:url" content="">
|
32
|
-
|
33
|
-
<meta property="og:image" content="">
|
34
|
-
|
35
|
-
<meta property="og:site_name" content="">
|
36
|
-
|
37
|
-
<meta property="og:description" content="" />
|
38
|
-
|
39
|
-
<title>hogehoge</title>
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
<?php include("https://www.hogehoge.jp/hogehoge.html"); ?>
|
44
|
-
|
45
|
-
</head>
|
46
|
-
|
47
|
-
<body>
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
<?php include("https://www.hogehoge.jp/hoge-sp.html"); ?>
|
52
|
-
|
53
|
-
<?php include("https://www.hogehoge.jp/hoge.html"); ?>
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
<!-- [[ contents ]] -->
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
<!-- [[ /contents ]] -->
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
<?php include("https://www.hogehoge.jp/fuga-sp.html"); ?>
|
68
|
-
|
69
|
-
<?php include("https://www.hogehoge.jp/fuga.html"); ?>
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
</body>
|
74
|
-
|
75
|
-
</html>
|
76
|
-
|
77
|
-
```
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
サーバーは
|
7
|
+
サーバーではphp.iniの設定でallow_url_includeはonにしてます
|
82
8
|
|
83
9
|
また、該当フォルダ内のhtaccessも
|
84
10
|
|
1
誤字脱字
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,6 +108,6 @@
|
|
108
108
|
|
109
109
|
|
110
110
|
|
111
|
-
を記述しましたが、
|
111
|
+
を記述しましたが、こちらのhtaccessの変更により、接続してもindex.htmlやincludeの対象の絶対パスを表示するどころか、index.htmlをダウンロードしてしまう状況となり解決方法が見いだせない状況となっています
|
112
112
|
|
113
113
|
恐縮ながら、当方がphpやサーバーなどに疎く、根本的な部分で間違っているとは思うのですがお知恵を拝借できると幸いです
|