Moved nopCommerce from ~\Store folder to ~\ , How to urlrewrite

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 12 ans
I have moved NopCommerce from:

http://www.company.com/store/products/93-product.aspx

to:

http://www.company.com/products/93-product.aspx

Could someone help me with this rule in UrlRewriting.config

      
<add name="NewLocation" virtualUrl="^~/store/*"
           rewriteUrlParameter="ExcludeFromClientQueryString"
           destinationUrl="~/$1"
           redirectMode="Permanent"
           ignoreCase="true" />
Il y a 12 ans
Below is how I get it to work...

add name="NoStoreFolderAnyMore1" virtualUrl="^~/store/products/([0-9]*)-([\w-]*)\.aspx(?:\?(.*))?"
           rewriteUrlParameter="ExcludeFromClientQueryString"
           destinationUrl="~/product.aspx?productid=$1&amp;sename=$2&amp;$3"
           ignoreCase="true" />


Now I need to add Blogs, Topic, Forum, etc.


Hope someone steps in and give me one rewrite for all files in /store look in /
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.