• I changed .htaccess to hide .php extension from appearing in the address bar. But, it now shows the Howdy bar on the left-bottom of the page. How to fix it?

    RewriteEngine On
    RewriteCond %{REQUEST_URI}  !-d
    RewriteCond %{REQUEST_URI}  !-f
    RewriteCond %{REQUEST_URI}.php -f
    RewriteCond %{REQUEST_URI}  !\.php$
    RewriteCond %{REQUEST_URI}  !\.css$
    RewriteCond %{REQUEST_URI}  !\.jpg$
    RewriteCond %{REQUEST_URI}  !\.png$
    RewriteRule  ^(.*)$  $1\.php  [L]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘rewriteCond removes the Howdy bar’ is closed to new replies.