Like here:
RewriteEngine on
RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L]
|
|
Like here:
|
||||
|
|
|
The mod_rewrite documentation says:
However, the documentation goes on to note that
|
||
|
|
|
|
If the rule matches, no more will be processed. Check out the full list of flags: http://httpd.apache.org/docs/2.2/rewrite/rewrite%5Fflags.html |
||
|
|
|
|
it means last, the rewrite engine will stop searching for matching rules. You can consult the documentation. Usually it's use to avoid to match other rule, you can use it when you are sure you don't need to do any other rewriting. |
||
|
|
|
|
It means that if this rule matches, no more rule matching should be done. L = Last. |
||
|
|
|
|
|
||
|
|