wordpress - 如何将二级域名放在infinityfree。
例如wmghz.com。
第一步,在infinityfree面板增加自定义域名。需要将cname加到cloudflare。
第二步,在infinityfree面板找到该项目的a记录。在cloudflare添加a记录。
第三步,在infinityfree面板给自定义域名,添加ssl证书。需要再添加一个cname记录。
第四步,在infinityfree面板,给新的目录安装wordpress。
第五步,在wordpress后台,安装插件:woocommerce。Product Import Export for WooCommerce By WebToffee。Order Export & Order Import for WooCommerce By WebToffee。Classic Editor。
第六步,在wordpress的file manager里面找到functions页面,将顶级域名的首页,指向二级域名www的首页。
/**
* @author Donald
* @community https://www.wmghz.com/about.html
*/
function redirect_homepage_to_www() {
if ( is_front_page() ) {
wp_redirect( 'https://www.wmghz.com/', 301 );
exit;
}
}
add_action( 'template_redirect', 'redirect_homepage_to_www' );
add_filter('auto_update_plugin', '__return_false');
add_filter('auto_update_theme', '__return_false');
add_filter('automatic_updater_disabled', '__return_true');