我有一個帶登錄表單的Codeigniter應用程序。我在Apache和Nginx上運行它。在Apache上,一切正常,表單操作正常。但在Nginx上,表單動作使用https
而不是http
(我現在不想)。Nginx上的Codeigniter爲表單生成https操作,但不生成Apache
我生成使用這種形式:
<?php echo form_open(site_url('/user/do_login')); ?>
和它產生這樣的:
<form action="https://example.com/index.php/user/do_login" method="post" accept-charset="utf-8">
我怎樣才能迫使它產生http
,而不是https
對Nginx的?
我強制它從nginx配置變成'off',現在就解決了!謝啦。 –
太棒了,它的工作。 –