質問編集履歴
1
Network画面の追加、ソースコードの追加を行いました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,3 +31,141 @@
|
|
31
31
|
・MySQL
|
32
32
|
|
33
33
|
・IIS
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
# 追記依頼について
|
38
|
+
|
39
|
+
IISを使ったホスティング自体が初めてで、どのようにソースコードを参照すればよいのかわかりません。そのため、ここに示しているソースコードは正常に読み込みできているWebサーバーのブラウザより抽出したものです。
|
40
|
+
|
41
|
+
また、開発者ツールよりNetworkタブを確認したところ、大量のエラーがありました。
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
## ソースコード
|
46
|
+
|
47
|
+
```php
|
48
|
+
|
49
|
+
<!doctype html>
|
50
|
+
|
51
|
+
<html lang="ja" >
|
52
|
+
|
53
|
+
<head>
|
54
|
+
|
55
|
+
<meta charset="UTF-8" />
|
56
|
+
|
57
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
58
|
+
|
59
|
+
<title>TITLE – Just another WordPress site</title>
|
60
|
+
|
61
|
+
<meta name='robots' content='max-image-preview:large' />
|
62
|
+
|
63
|
+
<link rel='dns-prefetch' href='//s.w.org' />
|
64
|
+
|
65
|
+
<link rel="alternate" type="application/rss+xml" title="TITLE » フィード" href="http://localhost/feed/" />
|
66
|
+
|
67
|
+
<link rel="alternate" type="application/rss+xml" title="TITLE » コメントフィード" href="http://localhost/comments/feed/" />
|
68
|
+
|
69
|
+
<script>
|
70
|
+
|
71
|
+
window._wpemojiSettings = {"baseUrl":"https://s.w.org/images/core/emoji/13.0.1/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/13.0.1/svg/","svgExt":".svg","source":{"concatemoji":"http://localhost/wp-includes/js/wp-emoji-release.min.js?ver=5.7.1"}};
|
72
|
+
|
73
|
+
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
|
74
|
+
|
75
|
+
</script>
|
76
|
+
|
77
|
+
<style>
|
78
|
+
|
79
|
+
img.wp-smiley,
|
80
|
+
|
81
|
+
img.emoji {
|
82
|
+
|
83
|
+
display: inline !important;
|
84
|
+
|
85
|
+
border: none !important;
|
86
|
+
|
87
|
+
box-shadow: none !important;
|
88
|
+
|
89
|
+
height: 1em !important;
|
90
|
+
|
91
|
+
width: 1em !important;
|
92
|
+
|
93
|
+
margin: 0 .07em !important;
|
94
|
+
|
95
|
+
vertical-align: -0.1em !important;
|
96
|
+
|
97
|
+
background: none !important;
|
98
|
+
|
99
|
+
padding: 0 !important;
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
</style>
|
104
|
+
|
105
|
+
<link rel='stylesheet' id='dashicons-css' href='http://localhost/wp-includes/css/dashicons.min.css?ver=5.7.1' media='all' />
|
106
|
+
|
107
|
+
<link rel='stylesheet' id='admin-bar-css' href='http://localhost/wp-includes/css/admin-bar.min.css?ver=5.7.1' media='all' />
|
108
|
+
|
109
|
+
<link rel='stylesheet' id='wp-block-library-css' href='http://localhost/wp-includes/css/dist/block-library/style.min.css?ver=5.7.1' media='all' />
|
110
|
+
|
111
|
+
<link rel='stylesheet' id='wp-block-library-theme-css' href='http://localhost/wp-includes/css/dist/block-library/theme.min.css?ver=5.7.1' media='all' />
|
112
|
+
|
113
|
+
<link rel='stylesheet' id='twenty-twenty-one-style-css' href='http://localhost/wp-content/themes/twentytwentyone/style.css?ver=1.3' media='all' />
|
114
|
+
|
115
|
+
<style id='twenty-twenty-one-style-inline-css'>
|
116
|
+
|
117
|
+
body,input,textarea,button,.button,.faux-button,.wp-block-button__link,.wp-block-file__button,.has-drop-cap:not(:focus)::first-letter,.has-drop-cap:not(:focus)::first-letter,.entry-content .wp-block-archives,.entry-content .wp-block-categories,.entry-content .wp-block-cover-image,.entry-content .wp-block-latest-comments,.entry-content .wp-block-latest-posts,.entry-content .wp-block-pullquote,.entry-content .wp-block-quote.is-large,.entry-content .wp-block-quote.is-style-large,.entry-content .wp-block-archives *,.entry-content .wp-block-categories *,.entry-content .wp-block-latest-posts *,.entry-content .wp-block-latest-comments *,.entry-content p,.entry-content ol,.entry-content ul,.entry-content dl,.entry-content dt,.entry-content cite,.entry-content figcaption,.entry-content .wp-caption-text,.comment-content p,.comment-content ol,.comment-content ul,.comment-content dl,.comment-content dt,.comment-content cite,.comment-content figcaption,.comment-content .wp-caption-text,.widget_text p,.widget_text ol,.widget_text ul,.widget_text dl,.widget_text dt,.widget-content .rssSummary,.widget-content cite,.widget-content figcaption,.widget-content .wp-caption-text { font-family: sans-serif; }
|
118
|
+
|
119
|
+
</style>
|
120
|
+
|
121
|
+
<link rel='stylesheet' id='twenty-twenty-one-print-style-css' href='http://localhost/wp-content/themes/twentytwentyone/assets/css/print.css?ver=1.3' media='print' />
|
122
|
+
|
123
|
+
<link rel="https://api.w.org/" href="http://localhost/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/xmlrpc.php?rsd" />
|
124
|
+
|
125
|
+
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/wp-includes/wlwmanifest.xml" />
|
126
|
+
|
127
|
+
<meta name="generator" content="WordPress 5.7.1" />
|
128
|
+
|
129
|
+
<script>document.body.classList.remove("no-js");</script> <script>
|
130
|
+
|
131
|
+
if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) {
|
132
|
+
|
133
|
+
document.body.classList.add( 'is-IE' );
|
134
|
+
|
135
|
+
}
|
136
|
+
|
137
|
+
</script>
|
138
|
+
|
139
|
+
<script src='http://localhost/wp-includes/js/hoverintent-js.min.js?ver=2.2.1' id='hoverintent-js-js'></script>
|
140
|
+
|
141
|
+
<script src='http://localhost/wp-includes/js/admin-bar.min.js?ver=5.7.1' id='admin-bar-js'></script>
|
142
|
+
|
143
|
+
<script id='twenty-twenty-one-ie11-polyfills-js-after'>
|
144
|
+
|
145
|
+
( Element.prototype.matches && Element.prototype.closest && window.NodeList && NodeList.prototype.forEach ) || document.write( '<script src="http://localhost/wp-content/themes/twentytwentyone/assets/js/polyfills.js?ver=1.3"></scr' + 'ipt>' );
|
146
|
+
|
147
|
+
</script>
|
148
|
+
|
149
|
+
<script src='http://localhost/wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js?ver=1.3' id='twenty-twenty-one-responsive-embeds-script-js'></script>
|
150
|
+
|
151
|
+
<script src='http://localhost/wp-includes/js/wp-embed.min.js?ver=5.7.1' id='wp-embed-js'></script>
|
152
|
+
|
153
|
+
<script>
|
154
|
+
|
155
|
+
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())}),!1);
|
156
|
+
|
157
|
+
</script>
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
※文字数制限でかなりカットしています。
|
164
|
+
|
165
|
+
## localhost環境のNetwork画面
|
166
|
+
|
167
|
+
![localhost](790afe14f7046b99d11901490947adad.png)
|
168
|
+
|
169
|
+
## クライアントPCのNetwork画面
|
170
|
+
|
171
|
+
![Client](7463a025b1e7e7495703f9899b8bea3d.png)
|