Revert "Changed 'prefix' into 'suffix'."

This reverts commit 4bd5e60ca9.

Reason for "prefix" being correct: The URL consists of four parts, [scheme][host][path][query].
The prefix is added inside one of those parts, i.e. the [path] part, so it belongs to that part.
Since the value is added to the beginning of that part, it's a prefix.
This commit is contained in:
Sipke Schoorstra
2016-05-24 22:26:01 +02:00
parent 82a827cd51
commit 7eaaf0d83f

View File

@@ -24,9 +24,9 @@
<span class="hint">@T("You may define multiple domains using the comma (,) as a separator. Use the '*.' prefix to map all subdomains.")</span>
</div>
<div>
<label for="@Html.FieldIdFor(m => m.RequestUrlPrefix)">@T("URL suffix")</label>
<label for="@Html.FieldIdFor(m => m.RequestUrlPrefix)">@T("URL prefix")</label>
@Html.TextBoxFor(m => m.RequestUrlPrefix, new { @class = "text medium" })
<span class="hint">@T("(Optional) Example: If suffix is \"site1\", the tenant URL suffix is \"http://orchardproject.net/site1\"")</span>
<span class="hint">@T("(Optional) Example: If prefix is \"site1\", the tenant URL prefix is \"http://orchardproject.net/site1\"")</span>
</div>
</fieldset>
<fieldset>