Codeigniter htaccess重定向url与param

时间:2017-04-12 13:31:48

标签: php apache .htaccess codeigniter mod-rewrite

我想重定向以下网址...

https://mypage.com/form/?object=123456

...用htaccess来......

https://mypage.com/form/object/123456

我不喜欢在config.php中启用enable_query_strings。有没有办法用htaccess来处理这个?目前,我只有“基本”htaccess:

 <IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?/$1 [L]
 </IfModule>

非常感谢你的帮助。

Greets,Yab86

0 个答案:

没有答案