The requested URL /server-status was not found on this server

直接在extra/httpd-info.conf 增加以下内容

<Location /server-status>
SetHandler server-status
Order deny,allow
#Deny from all
Allow from all
</Location>
ExtendedStatus On
<IFModule mod_info.c>
<Location /server-info>
SetHandler server-info
Order deny,allow
#Deny from all
Allow from all
</Location>
</IFModule>

同是要确认httpd-info.conf 被引入否则修改下httpd.conf

include conf/extra/httpd-info.conf

完成以上,就重启httpd

本文转自http://blog.sina.com.cn/s/blog_6cfb18070100q1o2.html

时间: 2024-08-05 23:40:38

The requested URL /server-status was not found on this server的相关文章

【每日学习】Apache重写未开启,导致The requested URL /xxxx.html was not found on this server

今天把项目环境从集成换成独立的,全部搭建好后,网站主页www.xxx.com能打开,但一涉及到跳转,带参数,比如 www.xxx.com/xxx/xxx.html 就会报错 The requested URL /xxxx.html was not found on this server 因为是新搭建的环境,apache的重写未开启,开启重写后,问题解决,方法如下: apache 打开 httpd.conf 文件 找到 #LoadModule rewrite_module modules/mod

新部署到服务器 报 The requested URL /home/profession was not found on this server. 错误

The requested URL /home/profession was not found on this server. 通过xxx.com, 首页可以正常访问,xxx.com/xx/xx 就出现 The requested URL xxx was not found on this server. 1,找到apache配置文件httpd.conf配置文件中的 AllowOverride none Require all denied 改成 Options Indexes FollowS

OS X apache配置,若碰到&quot;The requested URL /~your userName/ was not found on this server.&quot;这里有详细解答

从网上随便搜一下,按步骤做到修改/etc/apache2/httpd.conf 在网上查了半天,我是漏了一句这个 #LoadModule userdir_module libexec/apache2/mod_userdir.so 这是我的,已经改好了 Last login: Thu Aug 11 19:31:58 on ttys003 hanxueyingdeMacBook-Pro:~ hanxueying$ sudo vi /etc/apache2/httpd.conf hanxueyingd

linux下配置lamp时候出现The requested URL /info.php was not found on this server问题

在经历修改各种配置文件和各种文件权限后,发现了怎么解决 On newer versions of Ubuntu, the document root is set to /var/www/html instead of /var/www. You might have followed an old tutorial which was written for Ubuntu 12.04. If /var/www/html exists, try moving info.php to it. Mo

Not Found The requested URL / was not found on this server.

http://www.wanysys.cc/coding/php/800.html 今天在做本地PHP项目的时候,想把之前wampserver的本地虚拟服务器环境访问方式改为本地localhost访问方式,打开wampserver的Apache中的http://localhost/显示如下错误,提示The requested URL / was not found on this server.(在服务器上找不到请求的URL),百度各种方法都未解决,很多人的方法都是不加验证的复制粘贴别人的东西,

虚拟目录下apache点击报The requested URL* was not found on this server.

首先,我yum的httpd,把备份好的文件会存到/data/backup,并且在http.conf中配置虚拟目录 alias /mogodb/ "/data/backup" <Directory "/data/backup">     Options Indexes FollowSymLinks     AllowOverride All     Order allow,deny     Allow from all </Directory>

Yii2.0 解决“the requested URL was not found on this server”问题

在你下了 Yii 框架,配置完路由 urlManager 后,路由访问页面会报错"the requested URL was not found on this server",url类似于这种"https://www.cnblogs.com/site/index". 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false,//不显示.php 'suffix' =

Object not found! The requested URL was not found on this server.... 报错解决方案

服务器(centos6.5) lnmp 报错如下 Object not found! The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. If you think this is a server error, pleas

The requested URL ***** was not found on this serve

Wamp的Alias具体是干什么用的,后面要研究一下!!!! 我是之前创建了一个站点用Alias,后来把站点文件移到了www下后,除了首页都访问不了了.显示“The requested URL ***** was not found on this serve ”,于是参考下文把之前创建的Alias删掉,就好了. 引用来自:http://blog.sina.com.cn/s/blog_6d267545010198j8.html 前几天在使用Wamp部署几个站点. 有几个可用, 有几个一直提示"请

解决git提交问题error: The requested URL returned error: 403 Forbidden while accessing

git提交代码时,出现这个错误"error: The requested URL returned error: 403 Forbidden while accessing https" 解决方法: 编辑.git文件夹下的config文件就可以. vim .git/config #改动对于的配置 #原来的url = https://github.com/elitecodegroovy/PhoenixC.git url = https://[email protected]/elitec