質問編集履歴

1

試したことをさらに追記

2017/09/26 03:23

投稿

Ayano
Ayano

スコア13

test CHANGED
File without changes
test CHANGED
@@ -98,6 +98,64 @@
98
98
 
99
99
 
100
100
 
101
+ (4)エラーが表示されたのでhtaccessを疑い、開いてみると自動で書き換わっていないように思ったので、手入力で変更しました。
102
+
103
+ ```
104
+
105
+ 【変更前】
106
+
107
+ # BEGIN WordPress
108
+
109
+ <IfModule mod_rewrite.c>
110
+
111
+ RewriteEngine On
112
+
113
+ RewriteBase /
114
+
115
+ RewriteRule ^index.php$ - [L]
116
+
117
+ RewriteCond %{REQUEST_FILENAME} !-f
118
+
119
+ RewriteCond %{REQUEST_FILENAME} !-d
120
+
121
+ RewriteRule . /index.php [L]
122
+
123
+ </IfModule>
124
+
125
+ # END WordPress
126
+
127
+
128
+
129
+ 【変更後】
130
+
131
+ # BEGIN WordPress
132
+
133
+ <IfModule mod_rewrite.c>
134
+
135
+ RewriteEngine On
136
+
137
+ RewriteBase /wp/
138
+
139
+ RewriteRule ^index.php$ - [L]
140
+
141
+ RewriteCond %{REQUEST_FILENAME} !-f
142
+
143
+ RewriteCond %{REQUEST_FILENAME} !-d
144
+
145
+ RewriteRule . /wp/index.php [L]
146
+
147
+ </IfModule>
148
+
149
+ # END WordPress
150
+
151
+ ```
152
+
153
+
154
+
155
+ (5)それでも500エラーになるので、パーミッションを777や初期設定で設定されていた(らしい?)644にしてみたがダメでした。
156
+
157
+
158
+
101
159
 
102
160
 
103
161
  ###補足情報(言語/FW/ツール等のバージョンなど)