Can someone write me a rule that will redirect all requests for
http://www.example.com/some_page.html
to
http://www.example.com/some_page/
Thank you!!
If you really want to redirect requests of /some_page.html
to /some_page/
:
RewriteRule (.+)\.html$ /$1/ [L,R]
But if you want to reverse (redirect requests of /some_page/
to /some_page.html
):
RewriteRule (.+)/$ /$1.html [L,R]
For a permanent redirect, use R=301
instead of R
. And for just an internal rewrite, use the rule without R
flag.
Do you mean:
RedirectMatch 301 (.*)\.html$ http://www.example.com$1/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With