Which statements about the Alias and Redirect directives in Apache HTTPD's configuration file are true? (Choose two.)
Which statements about the Alias and Redirect directives in Apache HTTPD's configuration file are true? (Choose two.)
The Redirect directive is handled on the client side, instructing the client to request a different URL. The Alias directive is handled on the server side, allowing the server to map URLs to file system paths that can be located outside of the DocumentRoot.
Explanation: Redirect directive in Apache allows the use of regular expressions to match URLs and perform redirections based on patterns. It provides flexibility in specifying URL redirection rules using regular expressions to match various patterns of URLs. Alias directive maps URLs to file system paths on the server and is handled on the server side, allowing resources to be referenced from locations outside of the DocumentRoot.
C and D are correct!
A and B
C and D are correct! https://httpd.apache.org/docs/current/mod/mod_alias.html#redirect https://httpd.apache.org/docs/current/mod/mod_alias.html#alias A. The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. B. Regex only works with RedirectMatch C. Yes it tells client go here D. Yes, invisible redirection E. it is. see above