Resolve url.html/comment-page-1 to url/comment-pag

2019-09-18 07:50发布

问题:

Some days back, I have changes WordPress URL's to URL.html via .htaccess. I Know it was very smart move. As google crawled all tne pages, but there were too much 404 error in Webmaster Tools. After some days later I have removes .html from URL. but the real problem happens later.

Now my problem is:

I want to changes the URL.html/comment-page-1 to URL/comment-page-1 (default). I am not good with .htaccess. So please help me.

回答1:

You can use this redirect rule before other wordpress rules:

RewriteRule ^([^.]+)\.html/(.*)$ /$1/$2 [L,NC,NE,R=301]