.htaccess - What does "!" do in a rewrite Rule? -


i looking @ htaccess file. contains content

rewriteengine on rewriterule !\.(css|jpg|png|xml)$ index.php 

what "!" , valid redirection css , other critical files?

! means not. in other words, long following doesn't match, apply rule.

# not end in .css, .jpg, .png, or .xml # send index.php     rewriterule !\.(css|jpg|png|xml)$ index.php 

Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -