Hi,
i tried the solutions with the two plugins and the go-method i found here in the forum. But it doesn’t work or i’am not able to do it right … sorry
Simple question: Is it possible to do a normal 301 redirect with the htaccess kirby is working with?
In my example, I needed both, because I had to redirect the index.html and the rest to their corresponding subpages. The .htaccess on the remote server looks like this:
RewriteBase /
# reroute old URLs to new URLs
RewriteRule ^index.html$ / [R=301,L]
RewriteRule ^([a-z]+)\.html$ /$1/ [R=301,L]
The rewrite rules are directly after the rewrite base, which I had to set on this server.
I’m not really to firm in .htaccess rules and had to do some trial and error testing until it worked.