วิธีเขียนโค้ด php ใน ไฟล์นามสกุล html

อยากเขียนโค้ด php ใน ไฟล์นามสกุล html
ทำได้โดย .htaccess ความรู้เก่า

 

<IfModule dir_module>
DirectoryIndex index.html index.htm index.shtml index.php index.php5 index.php4 index.php3 index.phtml index.cgi index.pl
Addhandler application/x-httpd-php .php .htm .html .wml
</IfModule>

หมายเหตุ : อาจใช้งานได้กับ บางโฮสติ้ง ที่รองรับ

 

 

 



สำหรับโฮสติ้ง phpระบบ โฮสนครไอเทค ใช้โค๊สด้านล่างนี้

How to perform PHP code in the .html file?

php works in FastCGI mode

Construction type:

 

 

 

 

<FilesMatch "\.(html|htm)$">
AddHandler fcgid-script .php .html
FCGIWrapper "/usr/local/safe-bin/fcgid53.sh" .htm
FCGIWrapper "/usr/local/safe-bin/fcgid53.sh" .html

</FilesMatch>

It does not work. The code is not executed. Files in the folder /usr/local/safe-bin/fcgid53.sh there.
หรือ


<FilesMatch "\.(html|htm|php)$">
Addhandler application/x-httpd-php .php .htm .html .wml
AddHandler fcgid-script .php .htm .html
FCGIWrapper "/usr/local/safe-bin/fcgid53.sh"
FCGIWrapper "/usr/local/safe-bin/fcgid56.sh"
</FilesMatch>


ที่มา http://forum.directadmin.com/showthread.php?t=51610

 

  • 3 Users Found This Useful
Was this answer helpful?

Related Articles

การทำ Redirect from HTTPS เป็น HTTP

There are some specific cases when you want to redirect particular URL or a single website to be...

จะทำการ block IP โดยใช้ .htaccess ได้อย่างไร

สามารถทำได้โดยระบุ IP ที่ต้องการบลอกที่ .htaccess ไฟล์ โดเยการสร้างไฟล์วางไว้ที่ public_html...

วิธีการเปลี่ยนหน้าแรกจากไฟล์ index เป็นชื่ออื่นที่ต้องการใน hosting ของเรา

ภายในไฟล์ .htacess ให้ระบุข้อมูลต่อไปนี้ครับ DirectoryIndex ชื่อไฟล1 ชื่อไฟล์2 ชื่อไฟล์3...

Leverage browser caching

Change the request headers of your resources to use caching. Optimize your caching strategy....

How to enable displaying php errors on site

To enable displaying PHP errors Open your website with file manager61 Go...