考虑:
"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:8888
或my.domain
。我在AWS上部署应用程序,虽然我有一个指向我的AWS实例的域,我在我的本地机器上开发和测试(因此localhost
)。
总之,我需要用什么来替换localhost:8888
来确定自己在哪里指向网址?
答案 0 :(得分:0)
你可以尝试
<a href="<?php echo $_SERVER['SERVER_NAME']; ?>/index.php?'>
或者您可以编辑主机文件并添加http://my.domain/
并将其指向localhost