apache_conf 强化Wordpress网站
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf 强化Wordpress网站相关的知识,希望对你有一定的参考价值。
/* Opening tag just for the gist syntax, remove it*/
<?php
/* Override of default file permissions */
define( 'FS_CHMOD_DIR', ( 0755 & ~ umask() ) );
define( 'FS_CHMOD_FILE', ( 0644 & ~ umask() ) );
/* Define home */
define('WP_HOME','http://SITENAME.XX');
define('WP_SITEURL','http://SITENAME.XX');
/* Set the new content directory instead of wp-contents */
define( 'WP_CONTENT_DIR', dirname( __FILE__ ) . '/assets' );
define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/assets' );
/* Set the new plugin directory */
define( 'WP_PLUGIN_DIR', dirname(__FILE__) . '/plugins' );
define( 'WP_PLUGIN_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/plugins' );
/* Set the uploads directory */
define('UPLOADS', 'assets/uploads');
/* Disallow file edit*/
define('DISALLOW_FILE_EDIT', true);
/* Ennyi volt, kellemes blogolást! */
# Block the include-only files.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^wp-admin/includes/ - [F,L]
RewriteRule !^wp-includes/ - [S=3]
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
RewriteRule ^wp-includes/theme-compat/ - [F,L]
</IfModule>
# BEGIN WordPress
<files wp-config.php>
order allow,deny
deny from all
</files>
以上是关于apache_conf 强化Wordpress网站的主要内容,如果未能解决你的问题,请参考以下文章
apache_conf 添加过期标题以加速WordPress网站
apache_conf 通过.htaccess(主.htaccess)保护wordpress网站
强化 WordPress 的 11 种有效方法
强化 WordPress 的 11 种有效方法
apache_conf 将其放在Wordpress uploads文件夹中的.htaccess中。它将检查您现有网站上的上传,如果找不到
apache_conf 通过将其放入/ wp-content / uploads /中的新Htaccess文件,在本地版本的网站中加载生产WordPress上传