Dosya uzantısı html den php için yazılmış ise PHP fonksiyon mysql_connect () çalışmıyor

0 Cevap php

Ben php kodu ile html dosyası var. Bu mysql veritabanına bağlanmak için kod içerir.

Onu çalıştırdığınızda, bana bir hata verir:

Fatal error: Call to undefined function: mysql_connect() 

Dosya uzantısı php ise her şey çalışıyor.

Ayrıca, sadece kullanma .htaccess Ben dosya uzantısını yeniden yazılması olduğunu söylemeyi.

Ayrıca bazı fonksiyonlar gibi içerir ve yankı iyi çalışıyor.

Eğer bu işlemek için nasıl yardım edebilir miyim?

Update: İşte .htaccess dosyası:

RewriteEngine On
RewriteBase /

RewriteRule ^item/(.*) item.html/$1
RewriteRule ^page/(.*) page.html/$1
RewriteRule ^page2/(.*) page2.html/$1
RewriteRule ^browse/(.*) browse.html/$1

RewriteRule ^(.*).txt /page/error.html

ErrorDocument 400 /page/error.html
ErrorDocument 401 /page/error.html
ErrorDocument 403 /page/error.html
ErrorDocument 404 /page/error.html
ErrorDocument 500 /page/error.html
DirectoryIndex index.html index.php index.php3 index.htm index.html.var
AddHandler application/x-httpd-php .html

0 Cevap