http://www.naissancebebe.com/index.php?fc=module&module=prenoms&controller=search&gender=boy
我想用这种方式用.htaccess重写这个
http://www.naissancebebe.com/boy.php
所以这个查询字符串“index.php?fc = module& module = prenoms& controller = search& gender = boy”加入.htaccess文件。
这是我的代码
#RewriteEngine On
RewriteRule ^boy.php /index.php?fc=module&module=prenoms&controller=search&gender=boy [L]
答案 0 :(得分:1)
尝试:
Options -Multiviews
RewriteEngine On
RewriteRule ^boy\.php$ /index.php?fc=module&module=prenoms&controller=search&gender=boy [QSA,NC,L]