Redirect all subpages to main page using htaccess – Apache
I want to redirect all subpages to main page. I tried with code: RewriteEngine On RewriteRule .+ http://www.example.com [r=301,nc,l] All subpages are redirected except these that include question mark, for example, http://www.example.com/?123 is not redirected. How to modify my code…