I have some simple URL like this
/sub/image.jpg
/sub/sub/sub/image.jpg
I want to redirect them to another page but when I use redirect code this page giving 404 error.
Redirect 301 /sub/1.jpg https://examplel.com/new-page
FYI: those images are not on my server now.
2
Answers
You can use this generic redirect :
You may also try this rule that matches any URI that starts with
/sub/
and is not a file or directory:Once you verify it is working fine, replace
R=302
toR=301
. Avoid usingR=301
(Permanent Redirect) while testing yourmod_rewrite
rules.