我想重定向以下网址...
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