News Link Problem

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
15 年 前
Hi All, I installed the last version (nopCommerce v1.03 released) and it's great but when I click on news title or details i got this The resource cannot be found, I entered a new news and i got the same result. please advice
15 年 前
I guess that you've downloaded v1.02 (not v1.03). This bug was in v1.02

Check URL rewrite settings into your web.config file. In v1.03 it should looks like

<add name="NewsDetailsRewrite" virtualUrl="^~/News/([0-9]*)-([\w-]*)\.aspx(?:\?(.*))?"
           rewriteUrlParameter="ExcludeFromClientQueryString"
           destinationUrl="~/News.aspx?NewsID=$1&amp;$3"
           ignoreCase="true" />

<add name="BlogDetailsRewrite" virtualUrl="^~/Blog/([0-9]*)-([\w-]*)\.aspx(?:\?(.*))?"
           rewriteUrlParameter="ExcludeFromClientQueryString"
           destinationUrl="~/BlogPost.aspx?BlogPostID=$1&amp;$3"
           ignoreCase="true" />
15 年 前
Thank you, it's working.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.