我在 Windows 7 中运行 Apache 2.0.64。我访问了很多有关 Apache 安装和配置的站点。我的配置文件没问题(我认为)。我可以毫无问题地停止并重新启动服务器,但是当尝试访问页面(本地主机/市场)时,我得到了“哎呀!Google Chrome 无法连接到 localhost 的消息。我已经在 httpd.conf 中编写了我的 RewriteRule 并且我在 htdocs 文件夹中没有 .htaccess 文件
我的 httpd.config 的一些值可能对你有帮助
ServerName localhost
Listen 80
DocumentRoot "C:/Apache/Apache2/htdocs"
<Directory "C:/Apache/Apache2/htdocs">
RewriteEngine On
RewriteRule ^(market|stock|mutual)$ stackoverflow/$1 [L]
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AccessFileName .htaccess
请帮我
我不知道该怎么办了...