$(function(){ var pattern ={ // /products/list.php の変換マスタ // "カテゴリID":"変換後ファイル名" "category_list":{ "10" :"softball", "68" :"stream/softball" }, "products_category_list":{ "128" :"softball", "129" :"softball", "130" :"softball", "131" :"softball", "132" :"softball", "133" :"softball", "134" :"softball", "135" :"softball", "136" :"softball", "695" :"softball", "696" :"softball", "697" :"softball", "698" :"softball", "699" :"softball", "700" :"softball", "701" :"softball", "702" :"softball", "703" :"softball", "704" :"softball", "705" :"softball", "706" :"softball", "707" :"softball", "708" :"softball", "709" :"softball", "710" :"softball", "711" :"softball", "712" :"softball", "713" :"softball", "714" :"softball", "715" :"softball", "716" :"softball", "717" :"softball", "718" :"softball", "719" :"softball", "720" :"softball", "721" :"softball", "722" :"softball", "723" :"softball", "724" :"softball", "725" :"softball", "726" :"softball", "727" :"softball", "1167" :"softball", "1168" :"softball", "1169" :"softball", "1170" :"softball", "1183" :"softball", "1184" :"softball", "1185" :"softball", "1186" :"softball", "1240" :"softball", "1241" :"softball", "1242" :"softball", "1243" :"softball", "1318" :"softball", "1319" :"softball", "1320" :"softball", "1321" :"softball", "1452" :"softball", "1453" :"softball", "1454" :"softball", "1455" :"softball", "1494" :"softball", "1495" :"softball", "1496" :"softball", "1497" :"softball", "1541" :"softball", "1542" :"softball", "1543" :"softball", "1713" :"stream/softball", "1714" :"stream/softball", "1715" :"stream/softball", "1716" :"stream/softball", "1717" :"stream/softball", "1718" :"stream/softball", "1719" :"stream/softball", "1720" :"stream/softball", "1721" :"stream/softball", "2228" :"stream/softball", "2229" :"stream/softball", "2230" :"stream/softball", "2231" :"stream/softball", "2232" :"stream/softball", "2233" :"stream/softball", "2234" :"stream/softball", "2235" :"stream/softball", "2236" :"stream/softball", "2237" :"stream/softball", "2238" :"stream/softball", "2239" :"stream/softball", "2240" :"stream/softball", "2241" :"stream/softball", "2242" :"stream/softball", "2243" :"stream/softball", "2244" :"stream/softball", "2245" :"stream/softball", "2246" :"stream/softball", "2247" :"stream/softball", "2248" :"stream/softball", "2249" :"stream/softball", "2250" :"stream/softball", "2251" :"stream/softball", "2252" :"stream/softball", "2253" :"stream/softball", "2254" :"stream/softball", "2255" :"stream/softball", "2256" :"stream/softball", "2257" :"stream/softball", "2258" :"stream/softball", "2259" :"stream/softball", "2260" :"stream/softball", "2645" :"stream/softball", "2646" :"stream/softball", "2647" :"stream/softball", "2648" :"stream/softball", "2661" :"stream/softball", "2662" :"stream/softball", "2663" :"stream/softball", "2664" :"stream/softball", "2718" :"stream/softball", "2719" :"stream/softball", "2720" :"stream/softball", "2721" :"stream/softball", "2796" :"stream/softball", "2797" :"stream/softball", "2798" :"stream/softball", "2799" :"stream/softball", "2926" :"stream/softball", "2927" :"stream/softball", "2928" :"stream/softball", "2929" :"stream/softball", "2968" :"stream/softball", "2969" :"stream/softball", "2970" :"stream/softball", "2971" :"stream/softball", "3014" :"stream/softball", "3015" :"stream/softball", "3016" :"stream/softball", "3056" :"stream/softball" } }; /* リンク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); } } }); });