C
clintonG
Just what is the optimal model?
Rather than use default.aspx to return HTML I would like to use default.aspx
to return utlity functions that will determine if cookies are enabled and so
on and then do a redirect to a 'landing page' without being penalized by
search engines who may consider my default.aspx a 'doorway' page.
Using meta refresh is out of the question because Google and other search
engines will penalize and ban because a meta refresh 'might' be misused as a
doorway page and using a meta refresh does not support my need for utility
functions. Instead of a meta refresh SEO sites recommend the use of a "301
moved permanently" in the header of the response:
// Default.aspx
Response.Status = "301 moved permanently";
Response.AddHeader("Location","SomePage.aspx");
The 301 is alleged to be SEO friendly but doing that on the server means to
me there is no way to do any client-side utility functions.
What are your comments about the use of Default.aspx with regard to utility
functions and SEO and how might you redirect without getting penalized or
banned by the search engines?
Rather than use default.aspx to return HTML I would like to use default.aspx
to return utlity functions that will determine if cookies are enabled and so
on and then do a redirect to a 'landing page' without being penalized by
search engines who may consider my default.aspx a 'doorway' page.
Using meta refresh is out of the question because Google and other search
engines will penalize and ban because a meta refresh 'might' be misused as a
doorway page and using a meta refresh does not support my need for utility
functions. Instead of a meta refresh SEO sites recommend the use of a "301
moved permanently" in the header of the response:
// Default.aspx
Response.Status = "301 moved permanently";
Response.AddHeader("Location","SomePage.aspx");
The 301 is alleged to be SEO friendly but doing that on the server means to
me there is no way to do any client-side utility functions.
What are your comments about the use of Default.aspx with regard to utility
functions and SEO and how might you redirect without getting penalized or
banned by the search engines?