WordPress默认目录更改

时间:2019-01-31 11:09:02

标签: wordpress security hardening

我正在尝试更改WP默认目录的默认路径,例如wp-contentwp-include等,以避免wpscan。 我试过使用插件,是否有可能使用手动技术执行相同的操作。我正在使用apache作为Web服务器。

一个例子,我曾尝试:

RewriteRule ^cms_plugins/(.+) /wordpress/wp-content/plugins/$1 [L,QSA]

谢谢

1 个答案:

答案 0 :(得分:1)

请尝试以下步骤来重命名WP-Content文件夹

  1. 下载WP-Config.php文件
  2. 打开并编辑Wp-Config.php文件以添加以下行

    define('WP_CONTENT_FOLDERNAME','new_directry_name');

  3. 将“ new_directory_name”更改为内容文件夹所需的名称。

  4. 将WP-Config.php文件上传回服务器

请按照以下步骤替换WP_Content文件夹

  1. 下载WP-Config.php文件
  2. 打开并添加以下几行

    define('WP_CONTENT_DIR','new_directry_local_path');

    define('WP_CONTENT_URL','http://new_directry_url');

  3. 将new_directory_local_path和http://new_directory_url更改为您的本地路径和URL。

  4. 上传回您的服务器