回答編集履歴
4
「xxxx.com」を「example.com」に変更してみました。
test
CHANGED
@@ -30,10 +30,10 @@
|
|
30
30
|
|
31
31
|
CSSが読み込めないページが多数生じると考えられます。
|
32
32
|
|
33
|
-
- https://x
|
33
|
+
- https://example.com/css/style.css
|
34
34
|
|
35
|
-
- https://x
|
35
|
+
- https://example.com
|
36
36
|
|
37
|
-
- https://x
|
37
|
+
- https://example.com/aaaa/ (style.cssを読み込めない)
|
38
38
|
|
39
|
-
- https://x
|
39
|
+
- https://example.com/aaaa/1234 (style.cssを読み込めない)
|
3
修正
test
CHANGED
@@ -24,9 +24,11 @@
|
|
24
24
|
|
25
25
|
---
|
26
26
|
|
27
|
-
|
27
|
+
<link rel="stylesheet" href="css/style.css" type="text/css">
|
28
28
|
|
29
|
+
上記記述だと、例えば以下のように、indexとそのほかのページの階層が異なる場合、
|
30
|
+
|
29
|
-
|
31
|
+
CSSが読み込めないページが多数生じると考えられます。
|
30
32
|
|
31
33
|
- https://xxxx.com/css/style.css
|
32
34
|
|
2
修正、Laravel公式ドキュメントのURLを追記
test
CHANGED
@@ -1,18 +1,22 @@
|
|
1
|
-
`<link rel="stylesheet" href="css/style.css" type="text/css">`
|
1
|
+
変更前: `<link rel="stylesheet" href="css/style.css" type="text/css">`
|
2
2
|
|
3
3
|
↓
|
4
4
|
|
5
|
-
`<link rel="stylesheet" href="/css/style.css" type="text/css">`
|
5
|
+
変更前1: `<link rel="stylesheet" href="/css/style.css" type="text/css">`
|
6
6
|
|
7
|
-
|
7
|
+
(相対パスではなく、絶対パスにするといかがでしょうか?)
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
+
変更前2: `<link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css">`
|
12
|
+
|
11
|
-
|
13
|
+
(Laravelには「asset()」という関数が用意されているようです。)
|
12
14
|
|
13
15
|
|
14
16
|
|
15
|
-
`
|
17
|
+
`asset()`についての参考:
|
18
|
+
|
19
|
+
[https://readouble.com/laravel/7.x/ja/helpers.html?header=asset()](https://readouble.com/laravel/7.x/ja/helpers.html?header=asset())
|
16
20
|
|
17
21
|
[https://qiita.com/kotsuban-teikin/items/9b00d0faa0b7eaf70796](https://qiita.com/kotsuban-teikin/items/9b00d0faa0b7eaf70796)
|
18
22
|
|
1
追記
test
CHANGED
@@ -4,11 +4,17 @@
|
|
4
4
|
|
5
5
|
`<link rel="stylesheet" href="/css/style.css" type="text/css">`
|
6
6
|
|
7
|
+
`<link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css">`←追記
|
8
|
+
|
7
9
|
|
8
10
|
|
9
11
|
相対パスではなく、絶対パスにするといかがでしょうか?
|
10
12
|
|
13
|
+
|
14
|
+
|
11
|
-
|
15
|
+
`{{ asset('css/style.css') }}`についての参考:
|
16
|
+
|
17
|
+
[https://qiita.com/kotsuban-teikin/items/9b00d0faa0b7eaf70796](https://qiita.com/kotsuban-teikin/items/9b00d0faa0b7eaf70796)
|
12
18
|
|
13
19
|
|
14
20
|
|
@@ -18,10 +24,10 @@
|
|
18
24
|
|
19
25
|
片方でしかCSSが読み込めないということが生じると考えます。
|
20
26
|
|
21
|
-
-
|
27
|
+
- https://xxxx.com/css/style.css
|
22
28
|
|
23
|
-
|
29
|
+
- https://xxxx.com
|
24
30
|
|
25
|
-
-
|
31
|
+
- https://xxxx.com/aaaa/ (style.cssを読み込めない)
|
26
32
|
|
27
|
-
|
33
|
+
- https://xxxx.com/aaaa/1234 (style.cssを読み込めない)
|