- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Apache Web Server Question.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-18-2002 12:31 AM
тАО11-18-2002 12:31 AM
Apache Web Server Question.
I wanted to find out if there is anyone out there who knows if its possible to configure Apache to create dynamic pages, but using html instead of php !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-18-2002 08:47 AM
тАО11-18-2002 08:47 AM
Re: Apache Web Server Question.
Could you pls explain what you mean by creating dynamic pages with html?
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-18-2002 03:10 PM
тАО11-18-2002 03:10 PM
Re: Apache Web Server Question.
AddType application/x-httpd-php .php .php4 .php3 .phtml
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .phtml
To something like this:
AddType application/x-httpd-php .php .php4 .php3 .phtml .html
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .phtml .html
Note however that this will impact system performance as it will mean that *EVERY* page that is retrieved that ends in '.html' will be parsed by the PHP module.
There's more details on this on the PHP web site (http://www.php.net/manual/en/install.apache.php).
Hope this helps you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-18-2002 11:48 PM
тАО11-18-2002 11:48 PM
Re: Apache Web Server Question.
Thank for your answer. Its something which I never thought about, but sounds like a very interesting way to get the job done.
While the solution you proposed dosen't exactly fullfil my requirements, its definitely a good one !
I'm not sure is there is another way of generating dynamic html pages, but Im sure there is, as I have seen it on other Apache webservers which generate html pages dynamicaly.
If you come up with any other idea, please let me know !
Cheers,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2002 06:27 AM
тАО11-19-2002 06:27 AM
Re: Apache Web Server Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2002 07:19 AM
тАО11-19-2002 07:19 AM
Re: Apache Web Server Question.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2002 09:07 AM
тАО11-19-2002 09:07 AM
Re: Apache Web Server Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-19-2002 02:36 PM
тАО11-19-2002 02:36 PM
Re: Apache Web Server Question.
SSI is one method. Others include things like 'mod_perl' and 'mod_python'. These use perl/python respectivly type code within the HTML page in order to get dynamic content. I've not used either of them (given I know and like PHP), but they are very powerful from all I've read about them.
They also run quicker than "