自定义 url 而不是本地主机

custom url instead of having localhost

我在 XAMPP 的 htdocs 中有一个名为 example 的文件夹,所以我使用 localhost/example/ 访问我的 url 。当我输入 url 时,我怎么能只有 example/ 而不是 localhost/example/ 呢?提前致谢!

我试过在 apache htdocs 中编辑 DocumentRoom,但没有成功...

我不确定这是否对您有帮助,但您必须将 html 根目录设置到您的示例文件夹中才能仅使用 localhost/。也许您可以将示例文件夹的所有内容移动到父目录并重试。

如果你想使用像 example.com/ 这样的真实 URL 而不是 localhost/ 你可以编辑你的主机文件

sudo nano /etc/hosts

并在末尾添加以下行:

127.0.0.1    www.example.com
127.0.0.1    example.com