本文介绍了SEO重定向问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我为我的webmatrix网站运行优化报告时,我收到多个问题:

该页面包含不必要的重定向。这是导致问题的代码段:

When I run optimization report for my webmatrix website, I get multiple issues stating:
"the page contains unnecessary redirects". This is the code snippet that causes the problem:

if(!WebSecurity.IsAuthenticated)
   {
      //navigate to login page
       Response.Redirect(App.PathUserLogin + "?returnUrl=" + Request.Url.LocalPath);
   }



在使用某些页面之前,用户必须登录并且上面的代码试图将他/她重定向到登录页面(如果他没有登录)。那么为什么它被检测为不必要的,我该如何解决这个问题?


Before using some pages the user has to log in and the above code is trying to redirect him/her to the login page (if he is not logged in). So why is it detected as unnecessary and how can I fix this?

推荐答案


这篇关于SEO重定向问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 22:51