Hi, I want to remove index.php and index.html from url for 301 redirection. The following code in .htaccess is working file in our testing server but not working on production server. RewriteCond %{REQUEST_METHOD} !(.*)POST(.*) RewriteRule (.*)index\.(php|html)$ /$1 [R=301,L] Please suggest.