Questions tagged «httpd.conf»

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 …

2
找不到位于Apache的httpd.conf文件[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 7年前关闭。 如何找到httpd.conf文件所在的位置? 我正在从Amazon Web Services EC2(弹性计算云)运行Ubuntu Linux服务器,但找不到我的Apache配置。

8
Apache Proxy:没有协议处理程序有效
我正在尝试将子目录代理到另一台服务器。我的httpd.conf: RewriteEngine On ProxyPreserveHost On RewriteRule .*subdir/ https://anotherserver/subdir/ [P] 问题在于Apache始终在记录以下内容: AH01144: No protocol handler was valid for the URL /subdir/. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule., referer: http://localhost/ 因此,在搜索互联网后,我激活了以下模块: LoadModule headers_module modules/mod_headers.so LoadModule proxy_module modules/mod_proxy.so …

24
通过局域网从另一台计算机访问本地主机(xampp)-如何?
我刚刚在家中建立了Wi-Fi网络。我将所有文件都放在台式计算机(192.168.1.56)上,并希望从另一台计算机(192.168.1.2)访问本地主机。 在我的桌面上,我可以通过普通的http:// localhost访问localhost。Apache照常在端口80上运行。 究竟我该怎么做才能做到这一点?网上有文档,但是它们要么不起作用,要么太零散,令人难以理解。 我认为我必须对我的Apache的httpd.conf文件和hosts文件进行更改。关于进行哪些更改有任何想法吗?


2
如何配置Apache服务器与HTTPS后端服务器通信?
我将apache服务器配置为反向代理,如果我将后端服务器指向HTTP,则可以正常工作。那是: 我将虚拟主机443配置为: ProxyPass /primary/store http://localhost:9763/store/ ProxyPassReverse /primary/store http://localhost:9763/store/ 用户在这里将像访问服务器 https://localhost/primary/store 而且工作正常...但是我想像这样配置HTTP服务器; ProxyPass /primary/store https://localhost:9443/store/ ProxyPassReverse /primary/store https://localhost:9443/store/ 当我配置像apache server时会给出500个内部服务器错误。我在这里做错了什么? 我得到的错误是: The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, you@example.com and inform them of the time the error occurred, …

6
禁止您无权访问此服务器上的/
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 2年前关闭。 改善这个问题 我今天要做的就是将重定向规则写入子文件夹,例如:输入URL:example.com,然后将您重定向到example.com/subfolder 这样简单的愿望。我试图在互联网上找到解决方案。互联网告诉我要在htdocs根目录中添加一个.htaccess文件,其内容如下: RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ RewriteRule (.*) http://www.example.com/$1 [R=301,L] RewriteRule ^$ subfolder [L] 我做到了 但是显然没有成功,他们没有告诉我我必须取消注释httpd.conf中的模块: LoadModule rewrite_module modules/mod_rewrite.so 所以我也这样做了。再没有成功。他们没有告诉我我必须更改httpd.conf以便启用.htaccess文件: <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </Directory> DocumentRoot "c:/Apache24/htdocs" <Directory "c:/Apache24/htdocs"> Options Indexes FollowSymLinks AllowOverride All Require all granted …
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.