我在codeigniter中创建了一个项目。我在config.php中将base_url
设置为http://testproject.com/test/
现在我可以使用该URL访问应用程序(http://testproject.com/test/)并且我也能够登录,但是我无法使用URL访问该应用程序www.testproject.com/test/就在这里我在域名之前添加www。
我收到的错误是“Cross-Origin Request Blocked:同源策略禁止在http读取远程资源”。
在config.php中我已设置为基本网址http://www.testproject.com/test/现在我可以使用网址访问该应用程序www.testproject.com/test/
但是无法使用URL“http://testproject.com/test/”获取错误,因为“Cross-Origin Request Blocked:同源策略禁止在http读取远程资源”。
I have set as uri_protocol 'AUTO';
$config['uri_protocol'] = 'AUTO';
我的.htaccess文件看起来像这样
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|assets|images|css|js|robots\.txt)
RewriteRule ^(.*)$ ./index.php?/$1 [L,QSA]
任何人都可以帮我解决这个问题