我在使用 codeigniter 内置的应用程序时遇到了问题。$_POST 变量不起作用,var_dump($_POST) 返回 array(0)
在在线环境中工作正常,所以这是本地主机问题。
我认为它是 apache conf 或 .htacces conf,我正在添加这个项目中使用的 .htacces。
任何帮助都非常感谢,谢谢。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ $1 [L,R=301]
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>