更改页面上所有链接的默认 url 目录
我需要一些帮助。提前致谢。
我获得了 YAF 论坛 (yetanotherforum.net) 的开源代码,
我将其集成到我的网站应用程序中。
我在本地主机上调试时遇到一个小问题。我会尽力说清楚。
论坛中的链接都指向
~/Yaf/linkurl.aspx
(linkurl是页面名称) 但只有当我删除 /Yaf/ 时它们才起作用。所以我希望所有链接仅指向
~/linkurl.aspx
我可以在哪里更改它?是在配置文件中还是其他地方?
我希望我说清楚了。提前致谢
I need some help. Thanks in advance.
I got the Open source code of YAF Forum (yetanotherforum.net)
I integrated it in my website application.
I have a small problem when I debug on localhost. I'll try to be clear.
The link in the forums all point to
~/Yaf/linkurl.aspx
(linkurl is the page name)
But they only work if I remove the /Yaf/. So I want all the links to point only to
~/linkurl.aspx
Where can I change that? is that in a config file or someplace else?
I hope I was clear. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决了这个问题
我通过添加到 app.config 文件
I solved this issue by adding
To the app.config file
将
YAF.BaseUrl
键的值从 "~/yaf/" 更改为 "~/"将 YAF 嵌入现有的 asp.net 网站
Change
YAF.BaseUrl
key's value from "~/yaf/" to "~/"Embedding YAF inside an existing asp.net website