搜索引擎友好页面链接问题

时间:2014-02-12 07:33:54

标签: php .htaccess seo zen-cart

假设我的推荐链接是domain.com/index.php?main_page=display_all_testimonials。并且使用不同的模块动态生成推荐。它由zen cart框架组成。但现在我的客户希望证明链接应该是domain.com/wedding-flower-testimonials。

是否可以显示网页链接是domain.com/wedding-flower-testimonials,但页面内容显示在domain.com/index.php?main_page=display_all_testimonials模块中。

1 个答案:

答案 0 :(得分:0)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On
RewriteBase /

RewriteRule ^wedding-flower-testimonials/?$ /index.php?main_page=display_all_testimonials [L,NC,QSA]