我需要为我的opencart新闻创建重写(重定向)。
例如:
Mysite/about_us -> Mysite/content/about_us
或
Mysite/delivery -> Mysite/content/delivery
仅限新闻opencart。
如何在htaccess中做到这一点?
答案 0 :(得分:0)
INSERT INTO oc_url_alias
(query
,keyword
)VALUES('about_us','content / about_us');
INSERT INTO oc_url_alias
(query
,keyword
)VALUES('delivery','content / delivery');