重定向localhost /发票

时间:2011-03-12 18:38:35

标签: redirect localhost hosts

是否可以将localhost/invoices目录重定向到invoices?也许通过编辑我的主机文件?

由于

1 个答案:

答案 0 :(得分:0)

我假设'localhost'当前在/etc/hosts文件中设置为您的本地IP地址。像

这样的东西
 127.0.0.1 localhost

在这种情况下,请将发票添加到此文件

 127.0.0.1 localhost invoices

您还需要修改Apache配置文件中的VirtualHost(假设您使用的是Apache):

 <VirtualHost 127.0.0.1:80>
   ServerName invoices
   DocumentRoot /path/to/new/directory
   ...
 </VirtualHost>

使用服务器的IP地址和您连接的端口。然后,您需要重新启动Web服务器。

详细信息将取决于您现有的设置,但希望这足以使用。