天天看點

web前端 配置問題

1、index.php沒有自動調用

答:在httpd.conf裡面 沒有配置

<IfModule dir_module>

    DirectoryIndex index.html index.htm index.php

</IfModule>

web前端 配置問題

二、寫session_start(); 有的頁面報錯,有的不報錯。session_start(): Cannot start session when headers already sent in

web前端 配置問題

解決方法:https://www.cnblogs.com/baocheng/p/3968491.html

修改php.ini中的session.auto_start = 0 為 session.auto_start = 1

解決。

繼續閱讀