如何进行端口href?
我试过了:
final Set<UserRole> holdingSet = new LinkedHashSet<>();
这导致我指向localhost /:8123 我希望被定向到localhost:8123
这有效,但不适用于当地的环境:
<li><a href=":8123">Earth</a></li>
不想使用第二个,因为如果我不能使用本地计算机测试网站,我发现很难搜索错误。
答案 0 :(得分:0)
你可以添加本地域\ host使用其中一个php服务器变量:
$_SERVER['HTTP_HOST']
或$_SERVER['SERVER_NAME']
IE:
<li><a href="http://<?php echo $_SERVER['HTTP_HOST']; ?>:8123">Earth</a></li>
答案 1 :(得分:0)
可以使用javascript:
<li><a id="Earth">Earth</a>
<script>
document.getElementById('Earth').href=''+window.location.origin+':8124';
</script>