TABLE OF CONTENTS
Navigate to: Store and Reps > Store > Manage > URLs
Administrators can manage the URL(s) associated with the store through the URLS tab.
Each Store must be associated with a URL, activated under the “Tools” menu, and Published before it is available to the public.
Associating a URL with Store
Navigate to: Stores and Reps > Manage > Store > URLs
The store needs a domain before the customer can access the particular store.
Use the "Add New" button and complete the following details
URL Name | The unique domain name for the store, ex. http://www.znode.com |
Application | Define the type of store you're creating as API, Admin, or Webstore. |
"Enable this URL" box | Checkbox to enable URL |
Save progress using the "Save" button. The page reloads with action confirmation and redirects to the URL Landing Page.
(Optional) Administrators can now use Actions to manage URLs from the URL Landing Page, seen below.
URL has successfully been added
"Edit" action | Edit URL Name & change Application Type |
"Clear Cache" action | Clears cache for the entire application. |
Enable/Disable | Enable or Disable a URL for specified Store |
Delete" action | Delete a domain |
Configuring a Store URL that has a WWW prefix
We confirmed the settings remove the ‘www.' from the domain string. This is the base functionality. It detaches the protocol, removes the port number, and removes any trailing "/" and stores the standard URL only.
You can use a rewrite URL like the following
<rule name="RedirectNonWwwToWww" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^ " />
</conditions>
<action type="Redirect" url="" redirectType="Permanent" />
</rule>
In addition, in order to allow the URLs starting with 'www.' You will have to update that directly from the DB. This DB table is the Domain Table (dbo.ZnodeDomain) and the WebStore is commonly the relevant field