最贊回答 / qq_彩_0
再將RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]修改為:RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
2018-09-16
最新回答 / Alexander博士
解決了,,因?yàn)樽宇惖臉?gòu)造函數(shù)? ?會覆蓋父類的構(gòu)造函數(shù),,于是在子類中聲明構(gòu)造函數(shù)的時(shí)候,需要在子類中繼承父類的構(gòu)造函數(shù),以使父類的構(gòu)造函數(shù)依然生效。代碼:public function __construct($table1)? {? ? $this->table = $table1;????parent::__construct();? ? ? //禍根就出在這里!??!? }
2018-08-31
最贊回答 / secrethaha
一般的.htaccess規(guī)則不起作用了,需要把?RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]?改成?RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]?重啟apache即可。?
2018-07-09