Laravel + Vue でアプリケーションを作成しています。
apiのパラメータ(csvList)に
大量のデータ(値が10個ほど入った配列が20~30格納されている二重配列)
を渡して叩くと、403エラーが返ってきます。
ローカル環境では起きず、
CPIというレンタルサーバー上で動作させるとエラーが起きます。
パラメーターに渡す値が少ない(値が10個ほど入った配列が2~3格納されている二重配列)
時はエラーが起きません。
原因が分からないため質問しました。
該当のソースコードとアクセス制御ファイルを↓に掲載します。
よろしくお願いいたします。
vue
1 axios 2 .post('api/registCsv', { csvList, day }) 3 .then(response => { 4 this.stateMsg = '取り込みが完了しました'; 5 }) 6 .catch(e => { 7 this.stateMsg = '取り込みに失敗しました'; 8 }); 9
php
1Route::post('registCsv', 'App\Http\Controllers\PlanController@registPlanList');
htaccess
1<IfModule mod_rewrite.c> 2 <IfModule mod_negotiation.c> 3 Options +SymLinksIfOwnerMatch 4 </IfModule> 5 6 RewriteEngine On 7 8 AddHandler x-httpd-php74 .php 9 10 RewriteCond %{HTTP:Authorization} . 11 RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 12 13 RewriteCond %{REQUEST_FILENAME} !-d 14 RewriteCond %{REQUEST_URI} (.+)/$ 15 RewriteRule ^ %1 [L,R=301] 16 17 RewriteCond %{REQUEST_FILENAME} !-d 18 RewriteCond %{REQUEST_FILENAME} !-f 19 RewriteRule ^ index.php [L] 20</IfModule> 21
エラー内容↓
<HTML> <HEAD> <TITLE>閲覧できません(Forbiddenaccess)</TITLE> </HEAD> <BODY> <H1>閲覧できません(Forbiddenaccess)</H1> <HR>指定したウェブページを表示することができません。<BR> 入力したURLや値が正しくない可能性がございますのでご確認ください。<BR><BR> The server refuse to browse the page.<BR> The URL or value may not be correct. Please confirm the value.<BR><BR><HR> <DIVALIGN=right>Powered by Site Guard Lite</DIV> </BODY></HTML>
回答1件
あなたの回答
tips
プレビュー