I know that similar questions have been asked, but the available answers are not very clear, so please bear with me.
After setting up a few
s in apache, I'd like to configure the _default
_ ServerName so that it returns the 404 message. I.e., unless some explicitly available domain is specified in the Host http header, return 404. (Ideally something more direct than pointing to a now-nonexistent directory.)
Any help would be greatly appreciated.
Answer
Did you try:
Redirect 404 /
ErrorDocument 404 "Page Not Found"
in the default VirtualHost?
No comments:
Post a Comment