我有許多使用PHP的HTML文件。我通過使用.htacess代碼解決此問題...服務器傳輸後需要幫助修復PHP .htaccess錯誤
AddType application/x-httpd-php .php .html .htm
...它工作正常(在大多數情況下)。
我使用瀏覽器嗅探器來檢測我的用戶正在使用哪個瀏覽器,如果他們不使用IE,我顯示一個導航欄。該代碼是在這裏...
include('http://domain/browser.php'); $browser = new Browser(); if($browser->getBrowser() == Browser::BROWSER_IE) { } else{ include('http://domain.com/bottom-nav.php'); }
所有這一切都工作得很好,但之前我只是做了一個服務器轉移,現在只有這個PHP代碼休息,給我這個錯誤。
Warning: include_once() [function.include-once]: URL file-access is disabled in the server configuration in /home/myname/public_html/index.html on line 359
'http:// domain /'=腳本運行的相同域? –