正确的“基本路径”术语

发布于 2024-12-12 20:08:25 字数 504 浏览 2 评论 0原文

考虑安装在“mysite”目录中的网站:

/var/www/html/mysite/index.php
文档根目录 = /var/www/html
url = www.mysite.com/mysite/index.php

您会如何称呼以下内容:

  1. /var/www/html/mysite/ index.php(基本路径?根路径?)
  2. /var/www/html /mysite /index.php -或- www.mysite.com /mysite /index.php (路径?基本路径? )
  3. www.mysite.com/mysite/index.php (基本 URL)

我似乎无法想出一个明确的名称来区分 1 和 2。

Consider a website installed in the 'mysite' directory:

/var/www/html/mysite/index.php
document root = /var/www/html
url = www.mysite.com/mysite/index.php

What would you call the following:

  1. /var/www/html/mysite/ index.php (Base path? Root path?)
  2. /var/www/html /mysite /index.php -or- www.mysite.com /mysite /index.php (Path? Base path?)
  3. www.mysite.com/mysite/index.php (Base URL)

I can't seem to come up with a clear cut name to distinguish 1 and 2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一紙繁鸢 2024-12-19 20:08:25

我来自 ruby​​-on-rails 背景,但是...

1) 为此使用基本路径或根路径。选择一个并保持一致:)
3) 在 RoR 中,我们称之为“根 url”,但它也有点像“主路径”。
至于2 - 它不会出现在rails中(或者至少我们没有它的名称)

,听起来以下内容是一致的,不会混淆它们:

  1. base-filepath == /var/www /html/mysite/ /index.php
  2. root-filepath == /var/www/html /mysite /index.php
  3. root-url == www.mysite.com /mysite/index.php

另一种选择将是:

  1. root-filepath
  2. home-filepath
  3. home-url

my 2c :)

I'm from a ruby-on-rails background but...

1) either base-path or root path are used for this. Pick one and be consistent :)
3) in RoR we call this the "root url" but it's also kinda the "home path" too.
as to 2 - it doesn't occur in rails (or at least we don't have a name for it)

it sounds like the following would be consistent without confusing them all:

  1. base-filepath == /var/www/html/mysite/ /index.php
  2. root-filepath == /var/www/html /mysite /index.php
  3. root-url == www.mysite.com/mysite/index.php

An alternative would be:

  1. root-filepath
  2. home-filepath
  3. home-url

my 2c :)

情痴 2024-12-19 20:08:25

事实证明,这些可以通过多种方式引用。我会在这里列出它们:

Django

2 = script_prefix

Turns out these can be referred to in a variety of ways. I'll list them here as I find them:

In Django:

2 = script_prefix

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文