gpt4 book ai didi

php - opencart seo url重写

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:33:07 24 4
gpt4 key购买 nike

我已经成功地让 SEO URL 在 opencart 中工作,并且还设法调整标准 SEO URL 文件以合并其他自定义 URL。我遇到的问题与我建立的博客有关。博客条目表中的每个条目都有一个 SEO 关键字列。当前 URL 显示为 http://www.imbued.co.uk/blog?news_id=5其中 5 是第 5 个博客条目。我希望 URL 更简洁,例如 http://www.imbued.co.uk/blog/seokeywordfromthetable

下面的 SEO URL 文件是否可以调整成这样?

<?php
class ControllerCommonSeoUrl extends Controller {
/* SEO Custom URL */
private $url_list = array (
'common/home' => '',
'checkout/cart' => 'basket',
'product/special' => 'special',
'product/search' => 'search',
'affiliate/account' => 'affiliate',
'account/voucher' => 'gift-voucher',
'checkout/success' => 'checkout/success',
'product/manufacturer' => 'brand',
'account/transaction' => 'transactions',
'information/contact' => 'contact-us',
'product/compare' => 'compare',
'information/news' => 'blog',
'information/sitemap' => 'sitemap',
);
/* SEO Custom URL */

public function index() {
// Add rewrite to url class
if ($this->config->get('config_seo_url')) {
$this->url->addRewrite($this);
}

// Decode URL
if (isset($this->request->get['_route_'])) {
$parts = explode('/', $this->request->get['_route_']);

foreach ($parts as $part) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE keyword = '" . $this->db->escape($part) . "'");

if ($query->num_rows) {
$url = explode('=', $query->row['query']);

if ($url[0] == 'product_id') {
$this->request->get['product_id'] = $url[1];
}

if ($url[0] == 'category_id') {
if (!isset($this->request->get['path'])) {
$this->request->get['path'] = $url[1];
} else {
$this->request->get['path'] .= '_' . $url[1];
}
}

if ($url[0] == 'manufacturer_id') {
$this->request->get['manufacturer_id'] = $url[1];
}

if ($url[0] == 'information_id') {
$this->request->get['information_id'] = $url[1];
}
} else {
$this->request->get['route'] = 'error/not_found';
}
}
/* SEO Custom URL */
if ( $_s = $this->setURL($this->request->get['_route_']) ) {
$this->request->get['route'] = $_s;
}/* SEO Custom URL */

if (isset($this->request->get['product_id'])) {
$this->request->get['route'] = 'product/product';
} elseif (isset($this->request->get['path'])) {
$this->request->get['route'] = 'product/category';
} elseif (isset($this->request->get['manufacturer_id'])) {
$this->request->get['route'] = 'product/manufacturer/info';
} elseif (isset($this->request->get['information_id'])) {
$this->request->get['route'] = 'information/information';
}

if (isset($this->request->get['route'])) {
return $this->forward($this->request->get['route']);
}
}
}

public function rewrite($link) {
if ($this->config->get('config_seo_url')) {
$url_data = parse_url(str_replace('&amp;', '&', $link));

$url = '';

$data = array();

parse_str($url_data['query'], $data);

foreach ($data as $key => $value) {
if (isset($data['route'])) {
if (($data['route'] == 'product/product' && $key == 'product_id') || (($data['route'] == 'product/manufacturer/info' || $data['route'] == 'product/product') && $key == 'manufacturer_id') || ($data['route'] == 'information/information' && $key == 'information_id')) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = '" . $this->db->escape($key . '=' . (int)$value) . "'");

if ($query->num_rows) {
$url .= '/' . $query->row['keyword'];

unset($data[$key]);
}
} elseif ($key == 'path') {
$categories = explode('_', $value);

foreach ($categories as $category) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = 'category_id=" . (int)$category . "'");

if ($query->num_rows) {
$url .= '/' . $query->row['keyword'];
}
}

unset($data[$key]);
}//
/* SEO Custom URL */
if( $_u = $this->getURL($data['route']) ){
$url .= $_u;
unset($data[$key]);
}/* SEO Custom URL */


}
}

if ($url) {
unset($data['route']);

$query = '';

if ($data) {
foreach ($data as $key => $value) {
$query .= '&' . $key . '=' . $value;
}

if ($query) {
$query = '?' . trim($query, '&');
}
}

return $url_data['scheme'] . '://' . $url_data['host'] . (isset($url_data['port']) ? ':' . $url_data['port'] : '') . str_replace('/index.php', '', $url_data['path']) . $url . $query;
} else {
return $link;
}
} else {
return $link;
}
}
/* SEO Custom URL */
public function getURL($route) {
if( count($this->url_list) > 0) {
foreach ($this->url_list as $key => $value) {
if($route == $key) {
return '/'.$value;
}
}
}
return false;
}
public function setURL($_route) {
if( count($this->url_list) > 0 ){
foreach ($this->url_list as $key => $value) {
if($_route == $value) {
return $key;
}
}
}
return false;
}/* SEO Custom URL */
}
?>

最佳答案

为此,您确实需要在管理中添加一个 SEO 关键字字段,然后在编辑关键字时将关键字添加到 url_alias 表中。您还需要使用 blog_id=XXX 来代替 product_id=XXX。最简单的方法是从一种核心代码类型(productcategorymanufacturerinformation)复制代码 文件)以及他们如何在模型文件中执行此操作。在此之后,您只需要处理上面的 common/seo_url.php 中的 seo url 即可运行链接(同样,您只需要复制属于核心)

如果这是您购买的商业模组,我实际上会与开发人员取得联系。他们很可能会有解决方案,如果没有,为 future 的客户添加它符合他们的利益

关于php - opencart seo url重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17548778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com