在我的Visualforce页面中,我有几个指向另一个Visualforce页面的链接 在开发人员版中,我使用了这样的硬编码链接:
<apex:outputLink value="https://c.eu6.visual.force.com/apex/gindex" id="theLink">Back to shop</apex:outputLink>
在控制器端
Public PageReference backToPage(){
return new PageReference('/apex/gindex');
}
如何在force.com网站上正确设置?
答案 0 :(得分:0)
您可以在apex:outputLink值中使用相对URL而不是绝对值,就像在控制器中一样:
<apex:outputLink value="/apex/gindex" id="theLink">Back to shop</apex:outputLink>