假设我的推荐链接是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模块中。
答案 0 :(得分:0)
将此代码放入DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteBase /
RewriteRule ^wedding-flower-testimonials/?$ /index.php?main_page=display_all_testimonials [L,NC,QSA]