Is there any way to redirect following or anything permalink like this:
.html
to
/
Any link with a .html in the end to / in the end.
Is there any way to redirect following or anything permalink like this:
http://www.example/2014/02/post-title.html
to
http://www.example/2014/02/post-title/
Any link with a .html in the end to / in the end.
Share Improve this question asked Feb 19, 2014 at 18:57 Hardeep AsraniHardeep Asrani 6922 gold badges10 silver badges24 bronze badges 2- You could just keep the permalinks intact and not worry about it by adding .html to your permalinks. There are also a few plugins that can help with the transition google/search?q=blogger+to+wordpress+redirection – westondeboer Commented Feb 19, 2014 at 19:53
- I know bout that, but I'm writing a tutorial about how to migrate & was wondering if there's any to make a redirection using .htaccess or functions.php. – Hardeep Asrani Commented Feb 20, 2014 at 12:22
1 Answer
Reset to default 1You can set up the redirection on the .htaccess file, adding this row:
RewriteRule ^\d{4}/\d{2}/(.+)\.html$ http://www.example/$1/? [R=301,L]