Archive

Posts Tagged ‘Apache’

Redirect Wordpress feed to Feedburner

Feb 19th, 2010

Update (21-02-2010): I become tired testing Feedburner for recursive redirection problem. I need to wait for feedburner’s FeedBulletin for my account. and It does not come to check as and when you say to do so.  So, I have got a smart solution which can get me what I want (redirect all kind of feed [...]

Use of Apache URL REWRITE (mod_rewrite)

Sep 26th, 2007

Once I was wondering what the use of Apache module – mod_rewrite is. What I will achieve with mod_rewrite kind of heavy module.
I get many answers like I can redirect user to new page without user knowledge. Another case is when document root has changed. Examples are many but I could understand few, as my [...]

Integrate PHP with Apache

Aug 29th, 2007

You need to configure apache a little for telling how to execute php files.For making php work with apache you first dump php suppose c:\php501\. Then add these lines to your apache httpd.conf file. ScriptAlias /php/ “c:/php501/”AddType application/x-httpd-php .phpAction application/x-httpd-php “/php/php-cgi.exe”
First check your apache server is running correctly. If it is serving your html pages [...]

Few important Apache httpd.conf Directive

Aug 29th, 2007

Want to start learning Apache configuration settings. Start with these settings:
Server root. All files conf, htdocs, etc under it.ServerRoot “C:/Program Files/Apache Group/Apache2″
Script timeout:Timeout 300
Keep connection alive time:KeepAlive On
Max. request accepted keep alive request:MaxKeepAliveRequests 100
Keep Alive timeout:KeepAliveTimeout 15
Registered DNS name, or IP address hereServerName localhost:80
DocumentRoot: The directory out of which you will serve your documents.DocumentRoot “C:/Program [...]

Stop Execution of PHP Pages

Aug 24th, 2007

What to do for files which are not login protected but not for public viewing? Visiting there directly can be a security risk also.