Resolve url.html/comment-page-1 to url/comment-page-1 through htaccess [closed]

社会主义新天地 提交于 2019-12-11 22:50:58

问题


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]


来源:https://stackoverflow.com/questions/25598287/resolve-url-html-comment-page-1-to-url-comment-page-1-through-htaccess

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!