codeigniter に問題があり、何時間もソートしようとしています。投稿変数が投稿されていないようです。フォームは機能しています。ファイル内の test.php (print_r()) としてアクションを使用してテストしましたが、変数は次のとおりです。正常に投稿されているため、コントローラーが正常に動作していません。
コントローラ:
print_r($_POST); //Nothing
print_r($this->input->post()); //Nothing
print_r($this->input->post(NULL, TRUE)); //Nothing
exit;
多分その.htaccessファイル
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|uploads|img|images|frontcss|css|frontjs|js|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
助けてくれてありがとう