0

我在 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

请帮我

我不知道该怎么办了...

4

1 回答 1

1

如果您无法使用 localhost 访问您的页面,请尝试使用 127.0.0.1 IP 地址访问它,因为该 IP 地址指向 localhost。如果不是,则使 .htaccess 文件可写。希望能帮助到你。

于 2013-03-14T05:10:33.167 回答