关于新codeigniter的问题
新版本的codeigniter,做form post的时候,后台得不到值,get方式是PASS的,是不是PHP,APACHE需要配置什么,谢谢各位大大了补充下.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
直接$_POST['name']
页:
[1]