我需要链接示例。com到两个AWS Wordpress实例。实例com有一个指向ELB URL的A记录。如上所述here, 我补充道
define(\'WP_HOME\',\'http://example.com\');
define(\'WP_SITEURL\',\'http://example.com\');
以及主题的功能。php
update_option( \'siteurl\', \'http://example.com\' );
update_option( \'home\', \'http://example.com\' );
还添加了
define(\'RELOCATE\',true);
在里面
wp-config.php
.在添加这些之前,Wordpress通过点击公共IP来工作,但添加这些之后,我只收到
503 error
从…起
example.com
, 如果我尝试公共IP,它们只会被重定向到
example.com
, 因此给予
503
再一次
另一件需要注意的事情是,如果我替换示例。com与上述配置文件中相应的EC2 IP一起,该站点可以工作,但相对URL的格式不正确,如www.example.com/<ip-address>/contact-us#
我可能采用了错误的方法来处理自动缩放和ELB。