php 删除查询字符串静态资源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 删除查询字符串静态资源相关的知识,希望对你有一定的参考价值。

function remove_query_strings() {
   if(!is_admin()) {
       add_filter('script_loader_src', 'remove_query_strings_split', 15);
       add_filter('style_loader_src', 'remove_query_strings_split', 15);
   }
}

function remove_query_strings_split($src){
   $output = preg_split("/(&ver|\?ver)/", $src);
   return $output[0];
}
add_action('init', 'remove_query_strings');

以上是关于php 删除查询字符串静态资源的主要内容,如果未能解决你的问题,请参考以下文章

php 从静态资源中删除查询字符串

php 从静态资源中删除查询字符串

php 从静态资源中删除查询字符串

php 从静态资源中删除查询字符串

php Quitar查询来自静态资源的字符串

apache_conf 从静态资源中删除查询字符串以提高页面速度