.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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -