$(function(){ var pattern ={ // /products/list.php の変換マスタ // "カテゴリID":"変換後ファイル名" "category_list":{ "102" :"others", "103" :"stream/others" }, "products_category_list":{ "52" :"others", "53" :"others", "67" :"others", "119" :"others", "391" :"others", "392" :"others", "393" :"others", "394" :"others", "395" :"others", "396" :"others", "808" :"others", "809" :"others", "810" :"others", "954" :"others", "955" :"others", "956" :"others", "957" :"others", "958" :"others", "959" :"others", "960" :"others", "961" :"others", "962" :"others", "963" :"others", "964" :"others", "1056" :"others", "1057" :"others", "1058" :"others", "1078" :"others", "1079" :"others", "1080" :"others", "1328" :"others", "1329" :"others", "1330" :"others", "1331" :"others", "1647" :"stream/others", "1648" :"stream/others", "1657" :"stream/others", "1706" :"stream/others", "1961" :"stream/others", "1962" :"stream/others", "1963" :"stream/others", "1964" :"stream/others", "1965" :"stream/others", "1966" :"stream/others", "2208" :"stream/others", "2209" :"stream/others", "2340" :"stream/others", "2341" :"stream/others", "2342" :"stream/others", "2439" :"stream/others", "2440" :"stream/others", "2441" :"stream/others", "2442" :"stream/others", "2443" :"stream/others", "2444" :"stream/others", "2445" :"stream/others", "2446" :"stream/others", "2447" :"stream/others", "2448" :"stream/others", "2449" :"stream/others", "2534" :"stream/others", "2535" :"stream/others", "2536" :"stream/others", "2556" :"stream/others", "2557" :"stream/others", "2558" :"stream/others", "2806" :"stream/others", "2807" :"stream/others", "2808" :"stream/others", "2809" :"stream/others", "3064" :"stream/others" } }; /* リンク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); } } }); });