mirac
OpenCart-TR
- Katılım
- 7 Şub 2010
- Mesajlar
- 1,383
- Tepkime puanı
- 0
- Puanları
- 36
- Yaş
- 43
- Konum
- Beykoz____
- Web sitesi
- www.notebook-cantasi.com
Seo link kullananlar bilir linkler desktop/pc/bilgisayar gibi gözükür.. Bu linkleri desktop/pc/bilgisayar.html olarak göstermek için alttaki işlemi yapabilirsiniz..
catalog/model/tool/seo_url.php Aç..
Bul..
Değiştir..
.htaccess Aç..
Bul..
Değiştir..
Bu kadar..
catalog/model/tool/seo_url.php Aç..
Bul..
Kod:
return $url_data['scheme'] . '://' . $url_data['host'] . (isset($url_data['port']) ? ':' . $url_data['port'] : '') . str_replace('/index.php', '', $url_data['path']) . $url . $query;
Değiştir..
Kod:
return $url_data['scheme'] . '://' . $url_data['host'] . (isset($url_data['port']) ? ':' . $url_data['port'] : '') . str_replace('/index.php', '', $url_data['path']) . $url . '.html'. $query . (strstr($query, '?') ? '' : '');
.htaccess Aç..
Bul..
Kod:
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
Değiştir..
Kod:
RewriteRule ^([^?]*)(\.html)$ index.php?_route_=$1 [L,QSA]
Bu kadar..