Wp 初期設定

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

// .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