php - 如何在 OpenCart 中创建自定义的 SEO 友好 URL?

标签 php .htaccess url seo opencart

我想要http://example.com/index.php?route=checkout/cart显示为 http://example.com/cart .几天前,我在 StackOverflow ( http://stackoverflow.com/q/7578055/1236271) 中找到了答案。我对 seo_url 文件进行了必要的更改,还更新了数据库,但它仍然不适合我。我的 seo_url 文件有什么错误吗?这是我的 seo_url.php 文件。

<?php

class ControllerCommonSeoUrl extends Controller {
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';   
            }
        }           

        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/product';
        } elseif (isset($this->request->get['information_id'])) {
            $this->request->get['route'] = 'information/information';
        }
        else {
                            $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE keyword = '" . $this->db->escape($this->request->get['_route_']) . "'");
            if ($query->num_rows) {
                $this->request->get['route'] = $query->row['query'];
            }
       }
        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/product' || $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]);

                }

                else {
                    $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = '" . $this->db->escape($data['route']) . "'");

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

                        unset($data[$key]);
                    }
               }


            }

        }



        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;

    }       

}   

}

?>

最佳答案

简单的问题,您是否打开了重写模块,或者您是否在您的托管解决方案上启用了重写模块?

您是否创建了良好的 .htaccess 来完成所有这些工作?

关于php - 如何在 OpenCart 中创建自定义的 SEO 友好 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9801088/

相关文章:

php - 代码是否符合 Liskov 替换原则?

Apache : Restrict access to URI, 不是资源

file - 仅使用 htaccess 文件将 SSL 应用于一页

url - 编辑现有邮件或将其转发到 Gmail 撰写窗口

java - 在 Java 中从 URL 读取 JSON 的最简单方法

php - 如何使用 mysqli 防止 mysql 注入(inject) 1=1?

php - 尽管产品已启用且可见性适当,但 Magento 搜索返回 0 个结果

PHP AJAX 和 mySQL 不返回数据?

Apache 重定向 - .htaccess - ReWriteCond

Javascript 如何按值从 URL 字符串中删除参数?