繁体   English   中英

Kohana和OpenX

[英]Kohana and OpenX

我正在尝试在使用Kohana的网站上安装OpenX。 正常工作,直到发现此错误:

致命错误:未被捕获的Kohana_Request_Exception [0]:无法找到与URI相匹配的路由:500.shtml〜SYSPATH / classes / kohana / request.php [635]抛出/ home / xxxxxx / public_html / plugb / system / classes / 635行上的kohana / request.php

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

我当前的.htaccess是:

# 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 /

为什么会出现此错误? 我该如何解决?

谢谢你,加百利。

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM