質問編集履歴
1
内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,3 +11,139 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
サーバーはエックスサーバーです。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
ファイルですが.htaccessは↓です。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```.htaccess
|
22
|
+
|
23
|
+
SetEnvIf Request_URI ".*" Ngx_Cache_NoCacheMode=off
|
24
|
+
|
25
|
+
SetEnvIf Request_URI ".*" Ngx_Cache_StaticMode
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
# BEGIN WordPress
|
32
|
+
|
33
|
+
# "BEGIN WordPress" から "END WordPress" までのディレクティブ (行) は
|
34
|
+
|
35
|
+
# 動的に生成され、WordPress フィルターによってのみ修正が可能です。
|
36
|
+
|
37
|
+
# これらのマーカー間にあるディレクティブへのいかなる変更も上書きされてしまいます。
|
38
|
+
|
39
|
+
<IfModule mod_rewrite.c>
|
40
|
+
|
41
|
+
RewriteEngine On
|
42
|
+
|
43
|
+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
44
|
+
|
45
|
+
RewriteBase /
|
46
|
+
|
47
|
+
RewriteRule ^index.php$ - [L]
|
48
|
+
|
49
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
50
|
+
|
51
|
+
RewriteCond %{REQUEST_FILENAME} !-d
|
52
|
+
|
53
|
+
RewriteRule . /demo/index.php [L]
|
54
|
+
|
55
|
+
</IfModule>
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
# END WordPress
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
AddType x-httpd-php .html .htm
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
index.htmlは↓です。
|
72
|
+
|
73
|
+
```index.html
|
74
|
+
|
75
|
+
<?php require './demo/wp-blog-header.php'; ?>
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
<!doctype html>
|
80
|
+
|
81
|
+
<html lang="ja">
|
82
|
+
|
83
|
+
<head>
|
84
|
+
|
85
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
86
|
+
|
87
|
+
<meta charset="utf-8">
|
88
|
+
|
89
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
90
|
+
|
91
|
+
<link rel="stylesheet" href="css/reset.css">
|
92
|
+
|
93
|
+
<link href="css/style.css" rel="stylesheet" type="text/css">
|
94
|
+
|
95
|
+
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
|
96
|
+
|
97
|
+
<link href="https://fonts.googleapis.com/earlyaccess/hannari.css" rel="stylesheet" />
|
98
|
+
|
99
|
+
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap" rel="stylesheet">
|
100
|
+
|
101
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
<title>ルナゾーム</title>
|
106
|
+
|
107
|
+
</head>
|
108
|
+
|
109
|
+
<body>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<h2>新着情報</h2>
|
114
|
+
|
115
|
+
<ul>
|
116
|
+
|
117
|
+
<?php
|
118
|
+
|
119
|
+
$posts = get_posts("numberposts=5&category=&orderby=post_date&offset=0");
|
120
|
+
|
121
|
+
foreach ($posts as $post):
|
122
|
+
|
123
|
+
setup_postdata($post);
|
124
|
+
|
125
|
+
?>
|
126
|
+
|
127
|
+
<li>
|
128
|
+
|
129
|
+
<?php the_time('Y.m.d') ?>
|
130
|
+
|
131
|
+
<a href="<?php the_permalink() ?>"><?php the_title() ?><?php the_post_thumbnail('thumbnail'); ?></a>
|
132
|
+
|
133
|
+
<?php echo mb_substr(get_the_excerpt(), 0, 30); echo '...' ; ?>
|
134
|
+
|
135
|
+
</li>
|
136
|
+
|
137
|
+
<?php endforeach; ?>
|
138
|
+
|
139
|
+
</ul>
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
</body>
|
144
|
+
|
145
|
+
</html>
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
```
|