Can 2 .htaccess files block URL rewriting
问题 I have a codeigniter project inside the b1 folder in my public_html folder: mydomain.com/b1/controller/function I want to change it to: mydomain.com/controller/function in the browser bar using a 301 redirect. My .htaccess file in my public_html has: RewriteEngine on RewriteRule ^b1/(.*)$ /$1 [R=301,L,NC] RewriteRule ^(.*)$ b1/$1 EXPLANATION: RewriteRule ^b1/(.*)$ /$1 [R=301,L,NC] # THIS IS TO REWRITE ALL REQUESTS FROM THE NAVBAR IN MY PROJECT WHICH HAVE THE FORM mydomain.com/b1/controller