opencart 3已經為我們做好了url偽靜態功能,我們只要做一些簡單的設置就能實現seo url,首先開啟偽靜態功能,看看文件.htaccess事發后有存在如下規則,如果沒有需要先添加下面的代碼
RewriteEngine On RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
1.聯系我們這個頁面比較特殊www.abc.com/index.php?route=information/contact偽靜態成www.abc.com/contact
這樣設置Query:information/contact,keyword:contact
還有account頁/index.php?route=account/account偽靜態成/account
這樣設置Query:account/account,keyword:account
2.信息頁面/index.php?route=information/information&information_id=4偽靜態成/about_us
這樣設置Query:information_id=3,keyword:about_us
3.分類頁/index.php?route=product/category&path=34偽靜態成/mp3-players
這樣設置Query:category_id=34,keyword:mp3-players
4.產品頁/index.php?route=product/product&product_id=47偽靜態成hp_lp3065
這樣設置Query:product_id=47,keyword:hp_lp3065