<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to configure apache for parsing files with Ending .html ? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070905#M6665</link>
    <description>add this to the conf file :&lt;BR /&gt;&lt;BR /&gt;AddType text/html .html&lt;BR /&gt;&lt;BR /&gt;- your request is not very clear, if you need php to parse .html files then add :&lt;BR /&gt;AddType application/x-httpd-php .html &lt;BR /&gt;</description>
    <pubDate>Mon, 15 Sep 2003 08:40:14 GMT</pubDate>
    <dc:creator>Patrick Van Humbeeck</dc:creator>
    <dc:date>2003-09-15T08:40:14Z</dc:date>
    <item>
      <title>how to configure apache for parsing files with Ending .html ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070904#M6664</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;how to configure Apache httpd.conf for parsing files with Ending .html ?&lt;BR /&gt;I'm using Apache 1.3.27 installed&lt;BR /&gt;on linux SuSE 8.2&lt;BR /&gt;and I need a test php script in order to examine. &lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;chris&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Sep 2003 08:23:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070904#M6664</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2003-09-15T08:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure apache for parsing files with Ending .html ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070905#M6665</link>
      <description>add this to the conf file :&lt;BR /&gt;&lt;BR /&gt;AddType text/html .html&lt;BR /&gt;&lt;BR /&gt;- your request is not very clear, if you need php to parse .html files then add :&lt;BR /&gt;AddType application/x-httpd-php .html &lt;BR /&gt;</description>
      <pubDate>Mon, 15 Sep 2003 08:40:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070905#M6665</guid>
      <dc:creator>Patrick Van Humbeeck</dc:creator>
      <dc:date>2003-09-15T08:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure apache for parsing files with Ending .html ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070906#M6666</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;apache will parse .html files by default. &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://127.0.0.1/index.html" target="_blank"&gt;http://127.0.0.1/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;To test your php installation with apache web server. create a file named test.php under /var/www/cgi-bin/ directory.&lt;BR /&gt;&lt;BR /&gt;#vi /var/www/cgi-bin/test.php&lt;BR /&gt;&lt;BR /&gt;( type the below contents )&lt;BR /&gt;&lt;BR /&gt;Today's date is: &lt;BR /&gt;&lt;BR /&gt;save the file.&lt;BR /&gt;&lt;BR /&gt;Now &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://127.0.0.1/cgi-bin/test.php" target="_blank"&gt;http://127.0.0.1/cgi-bin/test.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or from some other machine.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://xxx.xxx.xxx.xxx/cgi-bin/test.php" target="_blank"&gt;http://xxx.xxx.xxx.xxx/cgi-bin/test.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;where xxx.xxx.xxx.xxx is the ip address of the apache server.&lt;BR /&gt;&lt;BR /&gt;You should be able to get System's date in the browser. Then your php is ok.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;     &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Sep 2003 08:45:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070906#M6666</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-09-15T08:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to configure apache for parsing files with Ending .html ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070907#M6667</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;sorry, my question was not clear.&lt;BR /&gt;I mean to pars php files with ending .html&lt;BR /&gt;&lt;BR /&gt;with&lt;BR /&gt;&lt;BR /&gt;AddType application/x-httpd-php .html &lt;BR /&gt;&lt;BR /&gt;is working.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;chris&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Sep 2003 08:27:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-configure-apache-for-parsing-files-with-ending-html/m-p/3070907#M6667</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2003-09-19T08:27:24Z</dc:date>
    </item>
  </channel>
</rss>

