2016-03-02 226 views
-1

我想要的标签
www.store.com/index.php?route=product/search&tag=Mercury 的URL更改为
www.store.com/tag/MercuryOpencart标签url seo友好吗?

我试着用

 } elseif ($data['route'] == 'product/search' && $key == 'tag') { 

         $url .= '/tag/' . $value; 

         unset($data[$key]); 

        } elseif ($key == 'path') { 

但无济于事改变catalog/controller/common/seo_url.php 替代代码的代码,

当然opencart搜索引擎优化网址友好是关于和工作罚款的其他东西,如产品和种类s,

我该如何解决?

回答

0

你有没有尝试过这样的:在您的.htaccess文件

补充一点:

RewriteRule ^tag/([^?]*)? /search?tag=$1 [L,QSA] 

前:

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] 

然后在你的product.tpl 改变那些:

<a href="<?php echo $tags[$i]['href']; ?>"><?php echo $tags[$i]['tag']; ?></a> 

到:

<a href="<?php echo 'tag/'.$tags[$i]['tag']; ?>"><?php echo $tags[$i]['tag']; ?></a> 

这样你就不必处理核心文件。

希望有所帮助。

//编辑

这里是你的product.tpl部分

<?php if ($tags) { ?> 
    <p><?php echo $text_tags; ?> 
    <?php for ($i = 0; $i < count($tags); $i++) { ?> 
    <?php if ($i < (count($tags) - 1)) { ?> 
    <!-- <a href="<?php echo $tags[$i]['href']; ?>"><?php echo $tags[$i]['tag']; ?></a> --> 
    <a href="<?php echo 'tag/'.$tags[$i]['tag']; ?>"><?php echo $tags[$i]['tag']; ?></a>, 
    <?php } else { ?> 
    <!-- <a href="<?php echo $tags[$i]['href']; ?>"><?php echo $tags[$i]['tag']; ?></a> --> 
    <a href="<?php echo '/tag/'.$tags[$i]['tag']; ?>"><?php echo $tags[$i]['tag']; ?></a> 
    <?php } ?> 
    <?php } ?> 
    </p> 
    <?php } ?> 

的.htaccess

RewriteBase/
RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L] 
RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L] 
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L] 
RewriteRule ^tag/([^?]*)? index.php?route=product/search&tag=$1 [L,QSA] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) 
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]