Questions tagged «apache»

使用此标记(以及适当的编程语言标记)来解决与Apache HTTP Server有关的编程问题。请勿对其他Apache Foundation产品使用此标签。请注意,服务器配置问题通常更适合https://serverfault.com

2
在.htpasswd上添加用户
我正在使用.htpasswd密码保护服务器上的某些目录。但是,我注意到每次执行此操作时,sudo htpasswd -c /etc/apache2/.htpasswd newuser我当前的内容.htpasswd都会被覆盖。我网站的每个目录在.htpasswd上都有自己的用户。 如何覆盖我的新用户而不覆盖它.htpasswd?
90 apache  .htpasswd 

24
XAMPP:无法启动Apache(Windows 10)
我正在使用XAMPP,并且可以启动Apache,但是,MySQL(phpMyAdmin)已启动! 当我开始时,出现此错误; 10:07:49 [Apache] Error: Apache shutdown unexpectedly. 10:07:49 [Apache] This may be due to a blocked port, missing dependencies, 10:07:49 [Apache] improper privileges, a crash, or a shutdown by another method. 10:07:49 [Apache] Press the Logs button to view error logs and check 10:07:49 [Apache] the Windows Event Viewer …
89 php  apache  xampp 




3
Node.js“服务器”与Nginx或Apache服务器相比如何?
我最近一直在研究Node.js,并且遇到了一些有关编写简单的基于Node.js的服务器的材料。例如,以下。 var express = require("express"), http = require("http"), app; // Create our Express-powered HTTP server // and have it listen on port 3000 app = express(); http.createServer(app).listen(3000); // set up our routes app.get("/hello", function (req, res) { res.send("Hello World!"); }); app.get("/goodbye", function (req, res) { res.send("Goodbye World!"); }); 现在,尽管我似乎理解了代码中发生的事情,但是我对术语有些困惑。当我听到服务器一词时,我想到的是Apache或Nginx之类的东西。我习惯于将它们视为可以容纳我的Web应用程序的容器。Node.js服务器与Nginx / …

4
如何在Windows 7上安装Apache Bench?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 6年前关闭。 改善这个问题 我想在Windows上安装Apache Bench,有人可以告诉我要获得哪个MSI吗? 我确实安装了一些MSI,但似乎已经安装了apache http服务器。 在测试IIS asp.net应用程序时,我只需要运行Apache Bench。

13
项目链接在Wamp Server上不起作用
我正在另一台计算机上安装Wamp Server,以运行中型数据库和UI。我已成功阻止IIS并将服务器路由到Localhost:8080。但是,每当我尝试从localhost主页访问我的项目时,都在www文件中;我被重定向到页面未找到错误。 当我将鼠标悬停在链接上方时,目录始终显示为“ http:// ProjectFolderNameHere /”。应该是“ http:// LocalHost:8080 / ProjectFolderNameHere /”时。如何使链接正常工作? 我的机器在Windows 7 Home Edition 64位上运行,并且我已经禁用了Microsoft的IIS。
85 php  mysql  apache  wamp  wampserver 

28
在Laravel 5+ Ubuntu 14.04上出现500个内部服务器错误
我已经在Windows OS上安装了Laravel多次,但从未发生过此类问题。当您的“ mod_rewrite”模块未打开时,通常会出现这500个内部服务器。 但是,在Ubuntu 14.04上,这个问题让我头疼。我已经安装了rewrite_mod,但它也无法正常工作。我已经访问了我所有的文件夹和文件,即 / var / www / html / laravel_project 仍然不起作用。.htaccess也从原始更改为此。 +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] 我也有Laravel 5+所需的所有必要扩展。还有我没做的事吗?

3
设置詹金斯时无效的命令ProxyRequests
我为詹金斯设置了一个新的虚拟主机: <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName ci.company.com ServerAlias ci ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPreserveHost on ProxyPass / http://localhost:8080/ </VirtualHost> ...使用代理,当我重新启动apache时,出现如下错误: Invalid command 'ProxyRequests', perhaps misspelled or defined by a module not included in the server configuration
85 apache  jenkins 



2
哪个软件包包括AB Ubuntu中的Apache服务器基准测试工具[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow的主题。 8年前关闭。 改善这个问题 我正在尝试找到一个-用于Ubuntu的Apache HTTP服务器基准测试工具,希望有一个可以为其安装的软件包。我决定需要对应用程序进行一些简单的负载测试。
83 linux  apache  ubuntu 

13
.htaccess将http重定向到https
我有一个旧的url(www1.test.net),我想将其重定向到https://www1.test.net 我已在自己的网站上实现并安装SSL证书的位置。 这是我的旧文件.htaccess: RewriteEngine On RewriteRule !\.(js|gif|jpg|png|css|txt)$ public/index.php [L] RewriteCond %{REQUEST_URI} !^/public/ RewriteRule ^(.*)$ public/$1 [L] 如何配置我的.htaccess文件,以便url自动重定向到https? 谢谢!
83 apache  .htaccess 

7
Apache HttpClient API中的CloseableHttpClient和HttpClient有什么区别?
我正在研究由我们公司开发的应用程序。它使用Apache HttpClient库。在源代码中,它使用HttpClient该类来创建实例以连接到服务器。 我想了解Apache HttpClient,并且已经看过这组示例。所有示例均使用CloseableHttpClient代替HttpClient。所以我认为CloseableHttpClient是的扩展版本HttpClient。如果是这种情况,我有两个问题: 两者有什么区别? 建议为我的新开发使用哪个课程?

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.