08-30-2021, 05:09 AM
Quote: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?
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:
For optimization CEO, in your doc what is "TIWSearchEngineOptions" used for and how it works ?
Some information here: http://docs.atozed.com/docs.dll/classes/...tions.html
Basically it's just a way to redirect any request from a Search engine/bot to a content handler
Quote:Question 3:
What is "FullApplicationURL" used for and how does it work ?
From our docs:
FullApplicationURL [Public]
Quote:Declaration: class function FullApplicationURL(ARequest: THttpRequest): string;
Description: Returns the full URL for the application
Parameters:Result: A string containing the full URL.
- ARequest (THttpRequest): The request object instance
Basically it returns the application URL containing all parts, including protocol, domain and port, example:
https://yourdomain.com:8881

