正在开发一个我有两个独立设计(视图)的网站。第一个视图index.php在我的public_html文件夹的根目录下,而第二个视图在一个名为mobile的子文件夹(也就是public_html / mobile)也在public_html的根目录下我有一个名为sessn.php的文件,我包括(使用php include" sessn.php&#34 ;;)在index.php和mobile / index.php中,在sessn.php中我指定了一个路径(secf)来保存会话使用 的ini_set(' session.save_path的'' SECF&#39);
我的挑战是,在index.php上一切正常但如果我转到mobile / index.php我得到无效路径,我将不得不创建另一个文件夹mobile / secf所以会话文件要保存。任何方式将index.php和mobile / index.php中的会话保存到同一个文件夹中?
答案 0 :(得分:0)
嗯...在 mobile / index.php :
中试试ini_set('session.save_path', '../secf');
干杯,