Wp 初期設定

■xmlrpc.phpアクセス時にリダイレクト

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
// .htaccessに追加
RewriteRule ^xmlrpc.php$ "http://0.0.0.0/" [R=301,L]
 
// after
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /fukushi/
RewriteRule ^xmlrpc.php$ "http://0.0.0.0/" [R=301,L]
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /fukushi/index.php [L]
</IfModule>
# END WordPress

■プラグイン追加

「WP No Category Base」「wp-emmet」「Revision Control」「PHP Code Widget」「Unveil Lazy Load」「Zen Cache」

PAGE TOP