开发者

Setting proper relative URL

开发者 https://www.devze.com 2023-02-07 09:43 出处:网络
If I am on the following page: http://subsite.mysite.com/sites/department/class/SitePages/Home.aspx and want to have a link to

If I am on the following page: http://subsite.mysite.com/sites/department/class/SitePages/Home.aspx and want to have a link to http://subsite.mysite.com/sites/department/SitePages/Home.aspx i.e. I want to keep开发者_运维问答 /sitepages/home.aspx and move it one step up in the hierarchy and not hard code http://subsite.mysite.com/sites/department/ Is this possible?

Thanks in advance.


Try:

<a href="../../SitePages/Home.aspx">My Link</a> or

<a href="/department/SitePages/Home.aspx">My Link</a> 
0

精彩评论

暂无评论...
验证码 换一张
取 消