URL Redirect Manager
  • Overview
  • Installation process
  • Updating plugin
  • 404 Error Log
  • Creating a Redirect
  • HTTP Status Codes
  • Dynamic Redirects
  • Download plugin
  • Contact Us
Powered by GitBook
On this page

Creating a Redirect

Previous404 Error LogNextHTTP Status Codes

Last updated 2 years ago

After you create redirect you have to clear cache of nopCommerce. Go to admin pannel, click on gear icon on top-right of the page. Click on Clear Cache.

To create a new redirect rule go to URL Rewrites page of the plugin.

If you set up Request Url to /*. Your store will break. The only solution would be to delete the record from database directly.

Make sure that your redirects do not create infinite loop. (e.g. /page1 -> /page2, and /page2 -> /page1)

Parameter
Explanation

Store

Select the store for this redirect, or select All.

Retirect Type

Request Url

URL to redirect from. You can input just a path of the url, or full url. For example, if you want to redirect from https://yourstore.com/iphone/iphoneX You can input iphone/iphoneX /iphone/iphoneX https://yourstore.com/iphone/iphoneX You can also use * operator to match any pattern. For example, /iphone/* will redirect every url that starts with /iphone/. Note, page /iphone will not be redirected. You can use * in your pattern only once, and it must be at the end of the url.

Target Url

Preserve Query String

URLs sometimes have query parameters in them. These parameters are located after ? symbol in url. For example user goes to url: https://yourstore.com/iphone?id=5 If this setting is enabled, you will be redirected to https://yourstore.com/newurl?id=5 If it is not enabled, you will be redirected to https://yourstore.com/newurl

Comment

Comment for admins

Select HTTP Status Code of this redirect. See page for more details

Input only if Redirect Type is set to 301, 302, 303, or 307. URL to redirect to. You can input just a path of the url, or full url. For example, if you want to redirect from https://yourstore.com/iphone/iphoneX You can input iphone/iphoneX /iphone/iphoneX https://yourstore.com/iphone/iphoneX You can also use placeholders, see for more info.

HTTP Status Codes
Dynamic Redirects page
URL Rewrites Page