我是AWS Elastic Beanstalk的新手,所以我不知道每次尝试使用sample.elasticbeanstalk.com/时如何解决403 forbidden如果itry sample.elasticbeanstalk.com/login,则找不到404。我的codeigniter正在我的wampserver和linux服务器上工作。我错过了什么吗?我的控制器文件名首字母已经是大写字母。
这是我的htaccess:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /sample
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|assets|user_assets|tmp|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
我在codeigniter中的config.php:
$config['base_url'] = 'http://'.$_SERVER['HTTP_HOST'].'/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
我希望有人可以帮我解决如何在AWS弹性beanstalk中正确设置codeigniter的问题。谢谢