質問編集履歴

1

追記

2016/05/02 08:26

投稿

y.ueno
y.ueno

スコア10

test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,59 @@
37
37
  WordpressもPHPも初心者のため、書き方に不明な点があれば申し訳ありません。
38
38
 
39
39
  分かる方、ご教授頂けると大変助かります。よろしくお願い致します。
40
+
41
+
42
+
43
+ ###追記
44
+
45
+ 関係あるかどうか分かりませんが、.htaccessの内容を載せておきます。
46
+
47
+ ```
48
+
49
+ ErrorDocument 401 /401.html
50
+
51
+ ErrorDocument 403 /403.html
52
+
53
+ ErrorDocument 404 /404.html
54
+
55
+ ErrorDocument 500 /500.html
56
+
57
+ Options -Indexes
58
+
59
+ <IfModule mod_fcgid.c>
60
+
61
+ <Files ~ (\.html)>
62
+
63
+ SetHandler fcgid-script
64
+
65
+ FCGIWrapper /var/www/cgi-bin/cgi_wrapper/cgi_wrapper .html
66
+
67
+ Options +ExecCGI
68
+
69
+ allow from all
70
+
71
+ </Files>
72
+
73
+ </IfModule>
74
+
75
+ # BEGIN WordPress
76
+
77
+ <IfModule mod_rewrite.c>
78
+
79
+ RewriteEngine On
80
+
81
+ RewriteBase /
82
+
83
+ RewriteRule ^index\.php$ - [L]
84
+
85
+ RewriteCond %{REQUEST_FILENAME} !-f
86
+
87
+ RewriteCond %{REQUEST_FILENAME} !-d
88
+
89
+ RewriteRule . /index.php [L]
90
+
91
+ </IfModule>
92
+
93
+ # END WordPress
94
+
95
+ ```