$(function(){ var pattern ={ // /products/list.php の変換マスタ // "カテゴリID":"変換後ファイル名" "category_list":{ "17" :"athletics", "60" :"stream/athletics" }, "products_category_list":{ "152" :"athletics", "153" :"athletics", "154" :"athletics", "155" :"athletics", "156" :"athletics", "787" :"athletics", "788" :"athletics", "789" :"athletics", "790" :"athletics", "791" :"athletics", "792" :"athletics", "793" :"athletics", "794" :"athletics", "795" :"athletics", "796" :"athletics", "797" :"athletics", "798" :"athletics", "799" :"athletics", "800" :"athletics", "801" :"athletics", "802" :"athletics", "1095" :"athletics", "1096" :"athletics", "1097" :"athletics", "1180" :"athletics", "1181" :"athletics", "1182" :"athletics", "1254" :"athletics", "1255" :"athletics", "1256" :"athletics", "1424" :"athletics", "1425" :"athletics", "1514" :"athletics", "1515" :"athletics", "1516" :"athletics", "1517" :"athletics", "1531" :"athletics", "1532" :"athletics", "1533" :"athletics", "1736" :"stream/athletics", "1737" :"stream/athletics", "1738" :"stream/athletics", "1739" :"stream/athletics", "1740" :"stream/athletics", "2319" :"stream/athletics", "2320" :"stream/athletics", "2321" :"stream/athletics", "2322" :"stream/athletics", "2323" :"stream/athletics", "2324" :"stream/athletics", "2325" :"stream/athletics", "2326" :"stream/athletics", "2327" :"stream/athletics", "2328" :"stream/athletics", "2329" :"stream/athletics", "2330" :"stream/athletics", "2331" :"stream/athletics", "2332" :"stream/athletics", "2333" :"stream/athletics", "2334" :"stream/athletics", "2573" :"stream/athletics", "2574" :"stream/athletics", "2575" :"stream/athletics", "2658" :"stream/athletics", "2659" :"stream/athletics", "2660" :"stream/athletics", "2732" :"stream/athletics", "2733" :"stream/athletics", "2734" :"stream/athletics", "2900" :"stream/athletics", "2901" :"stream/athletics", "2988" :"stream/athletics", "2989" :"stream/athletics", "2990" :"stream/athletics", "2991" :"stream/athletics", "3005" :"stream/athletics", "3006" :"stream/athletics", "3007" :"stream/athletics", "3058" :"stream/athletics" } }; /* リンクURL書き換え */ $('a').each(function() { var ret = $(this).attr('href'); if(ret){ var res_data = null; var cat_res = ret.match(/\/products\/list\.php\?(.*)category_id=(\d{1,})(.*)/); // カテゴリ別商品ページ var detail_res = ret.match(/\/products\/detail\.php\?(.*)product_id=(\d{1,})(.*)/); // 商品詳細ページ // 初期化 var rep_url = null; var rep_param = ''; if(cat_res){ // カテゴリ別商品ページ用URL変換処理 res_data = cat_res; if((typeof res_data[2] != "undefined") && res_data[2] && (typeof pattern['category_list'][res_data[2]] != "undefined") && pattern['category_list'][res_data[2]]){ rep_url = window.location.protocol + '//' + window.location.host + '/' + pattern['category_list'][res_data[2]] + '.php'; } } else if(detail_res){ // 商品詳細ページ用URL変換処理 res_data = detail_res; if((typeof res_data[2] != "undefined") && res_data[2] && (typeof pattern['products_category_list'][res_data[2]] != "undefined") && pattern['products_category_list'][res_data[2]]){ rep_url = window.location.protocol + '//' + window.location.host + '/' + pattern['products_category_list'][res_data[2]] + '_' + res_data[2] + '.php'; } } if(res_data && rep_url){ if((typeof res_data[1] != "undefined") && res_data[1]){ rep_param = '?' + res_data[1].slice(0, -1); } if((typeof res_data[3] != "undefined") && res_data[3]){ if(rep_param){ rep_param = rep_param + res_data[3]; }else{ rep_param = '?' + res_data[3]; } } if(rep_param){ rep_param = rep_param.replace('??','?'); rep_param = rep_param.replace('?&','?'); rep_param = rep_param.replace('&&','&'); } $(this).attr('href', rep_url + rep_param); } } }); });