Questions tagged «http-status-code-403»

403或“ Forbidden”(禁止)错误消息是HTTP标准响应代码,指示该请求是合法且可以理解的,但服务器拒绝响应该请求。


30
错误消息“禁止您没有访问此服务器上的权限/” [关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 2年前关闭。 我已经自己配置了Apache,并尝试在虚拟主机上加载phpMyAdmin,但收到了以下信息: 403禁止访问您没有访问此服务器上的权限 我的httpd.conf # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.2> for detailed information. # In particular, see # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> # for a discussion of each …

11
Nginx 403禁止所有文件
我在CentOS 5盒子上安装了Nginx和PHP-FPM,但是我很难使它服务于我的任何文件-无论是否为PHP。 Nginx以www-data:www-data的身份运行,默认的“欢迎使用EPEL上的nginx”站点(由root:root拥有644权限)加载正常。 nginx配置文件具有/etc/nginx/sites-enabled/*.conf的include指令,而我有一个配置文件example.com.conf,因此: server { listen 80; Virtual Host Name server_name www.example.com example.com; location / { root /home/demo/sites/example.com/public_html; index index.php index.htm index.html; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param PATH_INFO $fastcgi_script_name; fastcgi_param SCRIPT_FILENAME /home/demo/sites/example.com/public_html$fastcgi_script_name; include fastcgi_params; } } 尽管public_html由具有2777个文件权限的www-data:www-data拥有,但该网站无法提供任何内容- [error] 4167#0: *4 open() "/home/demo/sites/example.com/public_html/index.html" failed (13: …

17
Nginx 403错误:[文件夹]的目录索引被禁止
我有3个域名,并且正在尝试使用Nginx将所有3个站点托管在一台服务器(Digital Ocean Droplet)上。 mysite1.name mysite2.name mysite3.name 其中只有1个有效。其他两个导致403错误(以相同的方式)。 在我的nginx错误日志中,我看到:[error] 13108#0: *1 directory index of "/usr/share/nginx/mysite2.name/live/" is forbidden。 我启用了网站的配置是: server { server_name www.mysite2.name; return 301 $scheme://mysite2.name$request_uri; } server { server_name mysite2.name; root /usr/share/nginx/mysite2.name/live/; index index.html index.htm index.php; location / { try_files $uri $uri/ /index.html index.php; } location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; …

9
禁止使用Apache VirtualHost 403
我最近尝试用Apache设置测试服务器。该站点必须在domain下运行www.mytest.com。我总是会403 Forbidden出错。我使用的是Ubuntu 10.10服务器版本。doc根目录在dir下/var/www。以下是我的设置: / var / www的内容 ls -l /var/www/ total 12 drwxr-xr-x 2 root root 4096 2011-08-04 11:26 mytest.com -rwxr-xr-x 1 root root 177 2011-07-25 16:10 index.html 服务器上主机文件的内容(IP 192.168.2.5) cat /etc/hosts 127.0.0.1 localhost 127.0.1.1 americano 192.168.2.5 americano.mytest.com www.mytest.com # The following lines are desirable for IPv6 capable hosts ::1 …


8
Python 3 Web Scraping中的HTTP错误403
我试图通过抓取网站进行练习,但是我一直收到HTTP错误403(它认为我是机器人)吗? 这是我的代码: #import requests import urllib.request from bs4 import BeautifulSoup #from urllib import urlopen import re webpage = urllib.request.urlopen('http://www.cmegroup.com/trading/products/#sortField=oi&sortAsc=false&venues=3&page=1&cleared=1&group=1').read findrows = re.compile('<tr class="- banding(?:On|Off)>(.*?)</tr>') findlink = re.compile('<a href =">(.*)</a>') row_array = re.findall(findrows, webpage) links = re.finall(findlink, webpate) print(len(row_array)) iterator = [] 我得到的错误是: File "C:\Python33\lib\urllib\request.py", line 160, in urlopen return opener.open(url, …

17
MVC4 HTTP错误403.14-禁止
我已经构建了一个.net4.5 ASP.NET MVC4 Web应用程序,该应用程序在本地可以正常运行(IIS Express和开发服务器),但是一旦将其部署到我的Web服务器上,它将引发403错误。我已经在服务器上安装了.Net 4.5RC,甚至尝试了 aspnet_regiis -i 每个人都建议使用的MVC / .Net以前版本的问题,但是它没有帮助。 有任何想法吗? 编辑:有关情况的更多信息。该服务器是32位的,我还有其他4个运行良好的MVC3应用程序。只是我的MVC4应用无法正常工作。

11
模拟403错误页面
我知道您可以发送一个标头,告诉浏览器禁止此页面,例如: header('HTTP/1.0 403 Forbidden'); 但是,如何显示在服务器上为此类错误创建的自定义错误页面呢? 默认情况下,仅发送标题会显示白页,但我记得有一阵子回读,您可以使用客户错误页面。有人知道吗
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.