我正在尝试在我使用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是:
# 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 /我为什么要犯这个错误?我怎么才能修好它?
谢谢加布里埃尔。
发布于 2010-09-02 17:07:57
此错误在24小时后停止出现。
https://stackoverflow.com/questions/3551343
复制相似问题