.htaces子文件夹php的重定向问题


.htacces redirection issue with subfolder php

我想重定向此链接http://www.usedcarstampa.com/blog/?m=201511到http://www.usedcarstampa.com/blog/

我正在.htaccess文件中尝试以下操作

1) 不工作

Redirect /usedcarstampa.com/blog/index.php?m=201511  /index.php

2) 不工作

RewriteEngine on
RewriteCond %{QUERY_STRING} (^|&)m=201511(&|$) [NC]
Rewrite-rule ^index.php$ /? [R=301,NC] // not working

注意:-核心PHP中的主站点和word press中的博客部分博客/目录中还有另一个ht访问文件。我也尝试了上面的代码,但我没有得到积极的结果

请帮忙,提前感谢

/blog/.htaccess:中将此规则作为第一条规则进行尝试

RewriteEngine on
RewriteCond %{QUERY_STRING} (^|&)m=201511(&|$) [NC]
RewriteRule ^(index'.php)?$ /? [R=301,L]