Apache で拡張子を.htmlのままphpスクリプトを実行させる


<目的>

  • 拡張子をhtmlのまま、phpスクリプトを動かしたい

<環境>

  • Ubuntu 12.04.3 64bit
  • Apache 2.2.22

<参考>

/etc/apache2/sites-available/defaultに以下を追加する。

AddType application/x-httpd-php .htm .html

<VirtualHost *:80>
     ServerName euph-t.com
     ServerAdmin webmaster@localhost

     DocumentRoot /var/www
     AddType application/x-httpd-php .htm .html
</VirtualHost>

そして再起動。

/etc/init.d/apache2 restart

確認してみると、ちゃんと実行できてる。

TOPへ