202-450 Exam QuestionsBrowse all questions from this exam

202-450 Exam - Question 34


Which statements about the Alias and Redirect directives in Apache HTTPD's configuration file are true? (Choose two.)

Show Answer
Correct Answer: CD

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.

Discussion

4 comments
Sign in to comment
jchavarria12Options: BD
Jan 3, 2024

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.

ArminaOptions: CD
Feb 21, 2022

C and D are correct!

aafanasjevsOptions: AD
Jun 10, 2022

A and B

snorbisOptions: CD
Feb 22, 2024

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