0

我使用 XAMPP 进行本地开发,我听说开发人员将 url 结构从 localhost/site 更改为 site.dev,但我不知道如何去做。

我怎样才能改变它,在改变它之前我应该​​知道什么?

4

2 回答 2

1

您可以在 hosts 文件中将 site.dev 指向 127.0.0.1 并在 apache 配置文件中为该 url 创建一个绑定,以便来自该 url 的请求指向 xampp 中的特定站点/文件夹。我过去曾为开发项目这样做过,并且通常效果很好。

于 2012-06-18T20:50:02.507 回答
1

您需要在主机文件中添加一个条目以将 site.dev 映射到 localhost

127.0.0.1 site.dev www.site.dev

并在apache中添加一个虚拟主机来检测它

<VirtualHost *:80>
    DocumentRoot /path/to/document/root/site/
    ServerName site.dev
    ServerAlias  www.site.dev
# Other directives here
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot /path/to/document/root/
    ServerName localhost
# Other directives here
</VirtualHost>
于 2012-06-18T20:58:59.807 回答