![]() |
|
Error robot SEO and redirect automatic on index.html - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: Error robot SEO and redirect automatic on index.html (/thread-2495.html) |
Error robot SEO and redirect automatic on index.html - DidierMenant - 08-25-2021 Hello, with 15.2.25 on delphi 10.4.2 I have a commercial site that performs very bad with SEO, error page 404! Let me explain The several pages are static in pure HTML and work normally with the browser navigate normally whitout PB. Sometimes CEO robots have an access PB for 404 referencing !! I specify, I have an index.html page by default site ex 1: https://monsite.com Intraweb redirect always towards index.html for each new session ex 2: https://monsite.com/page2.html Intraweb redirect always towards index.html for each new session, it 's not normally for me Question 1: Why when you open a session (SEO or with a normal browser) there is redirection to index.html automatically, how to remove that. if I want https: //mysite/page2.html where is the setting in servercontroller? Question 2: For optimization CEO, in your doc what is "TIWSearchEngineOptions" used for and how it works ? Question 3: What is "FullApplicationURL" used for and how does it work ? RE: Error robot SEO and redirect automatic on index.html - Alexandre Machado - 08-30-2021 Quote:Question 1: IntraWeb does not redirect automatically to index.html, unless you have (a) a redirection in code or (b) a content handler which redirects it. Do you have either of them? Quote:Question 2: Some information here: http://docs.atozed.com/docs.dll/classes/TIWSearchEngineOptions.html Basically it's just a way to redirect any request from a Search engine/bot to a content handler Quote:Question 3: From our docs: FullApplicationURL [Public] Quote:Declaration: class function FullApplicationURL(ARequest: THttpRequest): string; Basically it returns the application URL containing all parts, including protocol, domain and port, example: https://yourdomain.com:8881 |