首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Kohana和OpenX

Kohana和OpenX
EN

Stack Overflow用户
提问于 2010-08-23 20:18:54
回答 1查看 1.1K关注 0票数 0

我正在尝试在我使用Kohana的网站上安装OpenX。它工作得很好,直到我发现这个错误:

/home/xxxxxx/public_html/plugb/system/classes/kohana/request.php中的

致命错误: Uncaught Kohana_Request_Exception 0:无法找到与URI相匹配的路由: 500.shtml ~SYSPATH/Kohana_Request_Exception/Kohana_Request_Exception/kohana/request.php 635

网址是:http://www.plugb.com/openx/www/admin/plugins/oxMarket/market-campaign-edit.php?clientid=1&campaignid=

我目前的.htaccess是:

代码语言:javascript
复制
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /

# WWW
RewriteCond %{HTTP_HOST} !^www\.plugb\.com [NC]
RewriteRule ^(.*)$ http://www.plugb.com/$1 [R=301,L]

#remove trailing slashes
RewriteCond %{HTTP_HOST} !^\.plugb\.com$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L] 

# Protect hidden files from being viewed
<Files .*>
    Order Deny,Allow
    Deny From All
</Files>

# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]

Redirect 301 /gamesindex /

我为什么要犯这个错误?我怎么才能修好它?

谢谢加布里埃尔。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2010-09-02 17:07:57

此错误在24小时后停止出现。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3551343

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档