以编程方式将html链接设置为localhost或AWS域

时间:2014-05-06 13:37:19

标签: php amazon-web-services localhost

考虑:

"if you do want to change your password, simply click: 
<a href="http://localhost:8888/index.php?'.http_build_query (array_merge($_GET, array ('action'=>'checkcredentials', 'reset_term' => $term)))..."

现在考虑:

"if you do want to change your password, simply click: 
<a href="http://my.domain/index.php?'.http_build_query (array_merge($_GET, array ('action'=>'checkcredentials', 'reset_term' => $term)))..."

我想要做的是用一些魔法替换示例的localhost:8888部分,以确定脚本是否应指向localhost:8888my.domain。我在AWS上部署应用程序,虽然我有一个指向我的AWS实例的域,我在我的本地机器上开发和测试(因此localhost)。

总之,我需要用什么来替换localhost:8888来确定自己在哪里指向网址?

1 个答案:

答案 0 :(得分:0)

你可以尝试

<a href="<?php echo $_SERVER['SERVER_NAME']; ?>/index.php?'>

或者您可以编辑主机文件并添加http://my.domain/并将其指向localhost