希望有人能帮我确定问题所在。我有一个拼凑在一起的整个PHP应用程序架构。在我尝试创建URI映射(与Slim Framework的工作方式类似)之前,它一直运行良好。这是一个代码示例(尽管使用了我过去几年构建的类似于CodeIgniter的其他架构也存在同样的问题):
class Err extends Base_Director {
function __construct() {
/* THIS WORKS EITHER WAY! */
$this->get('/', function(){
echo 'Error.';
});
/* THIS WORKS VIA '/err/404' BUT NOT WHEN CLASS IS 'error' ('/error/404') */
$this->get('/404', function(){
echo 'Numeric Error 404.';
});
/* THIS WORK VIA '/err/four' BUT NOT WHEN CLASS IS 'error' ('/error/four') */
$this->get('/four', function(){
echo 'Alphanumeric Error.';
});
$this->submit();
}
}
我真的认为这是Apache的问题,但谷歌搜索和搜索StackOverflow没有发现任何有效的东西。似乎任何使用$ _GET变量的URL(带有'/ error / *')都会返回Apache的“找不到对象!”页。页面上的内容为:
在此服务器上找不到请求的URL。如果您手动输入了URL,请检查拼写,然后重试。
然而,其他每个URL值都可以正常运行。
上次我试图解决这个不便之处,我认为它可能是一个保留的关键字或Apache中的东西,但我从来没有挖过网络服务器文件,担心我可能会弄乱一些东西。如果您认为我应该包含一些代码,请告诉我们。这是我正在使用的.htaccess
:
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_URI} !^(index\.php|\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico)$
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ ./index.php?url=$1 [NC,QSA,L]
更新 我更多地研究了这个问题,以帮助缩小范围。 “example.com/error/404”返回“找不到对象!”如上所述,“example.com/Error/404”的页面很好。
更新2: 这是我的httpd配置:
DocumentRoot "C:/xampp/htdocs"
<Directory "C:/xampp/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
Order allow,deny
Allow from all
#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
不想发布此帖子,以便我可以在PasteBin找到我的httpd文件的其余部分
答案 0 :(得分:0)
替换你写的所有内容,它会做同样的事情,并可以解决你的麻烦:
DirectoryIndex index.php
RewriteEngine On
RewriteRule /error/(.*) /err/$1 [L,R=301]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteRule (.*) /index.php?url=$1 [L]
Trevor的编辑:
在修改httpd-multilang-errordoc.conf
并评论Alias /error/ "C:/xampp/apache/error/"
后,我完成了上述工作。也可以通过Alias简单地更改错误重定向。这似乎是Xampp的一个功能,我对解决方案的补充可能不适用于其他服务器&#34;捆绑&#34;。