ssi.php 返回奇怪的页面
我在某些页面中包含此代码:
$_GET['a'] = 'stats2';
include "/var/www/forum/ssi.php";
在主页(www.musite.com)上它工作正常。但在其他页面,如 www.mysite.com/bigpage/、www.mysite.com/about/ 等,ssi.php 返回论坛页面的一部分(大量 css 和 js)。
我该如何修复它?
I include in some pages this code:
$_GET['a'] = 'stats2';
include "/var/www/forum/ssi.php";
on main page (www.musite.com) its work fine. But on other pages like www.mysite.com/bigpage/, www.mysite.com/about/ etc. ssi.php return part of forum page (a lot of css an js).
How can i fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与您在应用程序中使用的代码完全相同吗?听起来像是您链接到相对路径..
Is this the exact same code you are using in your application? It sounds like your linking to a relative path..
我发现了问题。我的版本IPB 3.1.2,FURL打开。
FURL 中的问题。
ipsRegistry::instance()->init()中有调用FURL检查函数。
在退出 init() 函数之前,它会检查 FURL:
这就是它拉出 404 错误并包含大量论坛 html 的原因。
I found the problem. My version IPB 3.1.2, FURL on.
The problem in FURL's.
There is a call FURL check function in ipsRegistry::instance()->init().
Before exit init() function it check FURL:
That's why it pull 404 error and include a lot of forum html.