使用url()後出現No input file specified.

苦夏木禾發表於2020-12-26

事由:

有一個form表單,提交地址為{:url('signup_check')}。提交後頁面顯示No input file specified.

解決方法:

在public目錄下的.htaccess檔案中,將

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

改為(在php後加?

RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]

在這裡插入圖片描述
解決了

相關文章