我在codeignitor中遇到重定向功能问题。
我有以下代码
redirect('register/?id='.$post["id"]); // It works
但是当我做的时候
redirect('register/'.$post["id"]); // Then it says page missing.
注册页面在那里,但它不了解url参数。我不确定它是否是htaccess问题或框架问题。
htaccess文件
<IfModule mod_rewrite.c>
Options +FollowSymLinks -Indexes
Options -MultiViews
RewriteEngine on
RedirectMatch 403 ^/.*/(system/cms/cache|system/codeigniter|system/cms/config|system/cms/logs|\.git|\.hg).*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>
非常感谢任何帮助。提前谢谢。