: How to redirect specific url to 404 in htaccess? I want to redirect only one specific URl (ex. mypage.com/1234/page/) to error page 404. How to achieve it in htaccess?
I want to redirect only one specific URl (ex. mypage.com/1234/page/) to error page 404.
How to achieve it in htaccess?
More posts by @Berumen354
1 Comments
Sorted by latest first Latest Oldest Best
With mod_alias activated, you can do that with the Redirect directive:
Redirect 404 /1234/page/
Redirect expects usually the target as 3rd argument, leaving it brings up the configured ErrorDocument. If a target is added it would result in an internal error.
As can be read in the docs:
If the status is between 300 and 399, the URL argument must be present, otherwise it must be omitted.
(Thanks @w3d for that note!)
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.