質問編集履歴

2

原因解明のための追加補足情報

2018/07/26 18:01

投稿

yosuke_ir
yosuke_ir

スコア12

test CHANGED
File without changes
test CHANGED
@@ -107,3 +107,57 @@
107
107
 
108
108
 
109
109
  ・wordpressはドキュメントルートディレクトリにインストールしています。
110
+
111
+
112
+
113
+ ### 追加補足
114
+
115
+ httpd.confの設定状況
116
+
117
+ > DocumentRoot "/var/www/html"
118
+
119
+ >
120
+
121
+ > <Directory "/var/www">
122
+
123
+ > # AllowOverride None
124
+
125
+ > AllowOverride All
126
+
127
+ > # Allow open access:
128
+
129
+ > Require all granted
130
+
131
+ > </Directory>
132
+
133
+
134
+
135
+ 現状の.htaccessの記載情報
136
+
137
+
138
+
139
+ > # BEGIN WordPress
140
+
141
+ > <IfModule mod_rewrite.c>
142
+
143
+ > RewriteEngine On
144
+
145
+ > RewriteBase /
146
+
147
+ > RewriteRule ^index.php$ - [L]
148
+
149
+ > RewriteCond %{REQUEST_FILENAME} !-f
150
+
151
+ > RewriteCond %{REQUEST_FILENAME} !-d
152
+
153
+ > RewriteRule . /index.php [L]
154
+
155
+ > RewriteCond %{REQUEST_URI} /.*
156
+
157
+ > RewriteCond %{REQUEST_URI} !^/index.php
158
+
159
+ > RewriteRule .* /index.php%{REQUEST_URI} [P,L]
160
+
161
+ > </IfModule>
162
+
163
+ > # END WordPress

1

用語の記載間違えの修正

2018/07/26 18:01

投稿

yosuke_ir
yosuke_ir

スコア12

test CHANGED
File without changes
test CHANGED
@@ -70,7 +70,7 @@
70
70
 
71
71
 
72
72
 
73
- wordpressはルートドキュメントにインストールしているので
73
+ wordpressはドキュメントルートにインストールしているので
74
74
 
75
75
  上記の記載で問題ないと判断しました。
76
76