Questions tagged «base-url»

17
Laravel:获取基本网址
简单的问题,但答案似乎很难获得。在Codeigniter中,我可以加载url帮助器,然后简单地执行 echo base_url(); 获取我网站的网址。Laravel是否有同等功能?
182 php  laravel  base-url 

6
如何获取域名URL和应用程序名称?
这是场景。 我的Java Web应用程序具有以下路径 https://www.mywebsite.com:9443/MyWebApp 假设有一个JSP文件 https://www.mywebsite.com:9443/MyWebApp/protected/index.jsp 我需要找 https://www.mywebsite.com:9443/MyWebApp 在此JSP文件中。 当然,有一种懒惰而愚蠢的方法,即仅获取URL,然后重新追溯路径。 但是,有没有程序化的方式来做到这一点?具体来说,我认为我可以获取域+端口,但是如何实际检索应用程序名称“ MyWebApp”?
98 jsp  base-url 



2
如何通过JSF中的上下文路径获取基本URL?
我有这个结构: WebContent resources components top.xhtml company about_us.xhtml index.xhtml top.xhtml是一个组件,也用于index.xthml和about_us.xhtml。 top.xhtml <ul> <li><a href="index.xhtml">Home</a></li> <li><a href="company/about_us.xhtml">About us</a></li> ... </ul> 所以我的问题是,当当前页面是index.xhtml组件时,组件会正确生成URL,但是当当前页面是时about_us.xhtml,它将生成错误的URL。我不能使用相对路径,因为它也会生成错误的URL。我认为这是因为该组件基于*.xhtml页面的当前路径。 我能找到的唯一解决方案是: <ul> <li><a href="${pageContext.request.contextPath}/webname/index.xhtml">Home</a></li> <li><a href="${pageContext.request.contextPath}/webname/about_us.xhtml">About us</a></li> ... </ul> 但是我认为这根本不是“优雅”的。有任何想法吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.