使用.htaccess重写URL(添加查询字符串)

时间:2015-11-12 03:42:52

标签: php html mysql .htaccess mod-rewrite

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]

1 个答案:

答案 0 :(得分:1)

尝试:

Options -Multiviews
RewriteEngine On
RewriteRule ^boy\.php$ /index.php?fc=module&module=prenoms&controller=search&gender=boy [QSA,NC,L]