26

I have just installed apache server on my system. Right now have very limited knowledge about apache. I intend to use it to write scripts that can "get" a given data from a given url and after processing it "post" to a different url.

I just want to know if there is any specific book or tutorials that would give me some knowledge about apache and enable me to write scripts to do my intended task.

PS: I have googled it but did not find any really good source. I dont want to start with something that finally turns of no use for me

Dilletante
  • 1,801
  • 4
  • 19
  • 18

1 Answers1

27

The apache configuration contains a user guide section which can give you some very valuable starting points (check your apache version on the documentation urls); This is not simply a list of configuration options, but real guides with links to other parts of the documentation if you need more details.

I would start with:

Then you may have a look at these 3 topics:

And my own advice, do not trust the .htaccess and mod_rewrite tricks on the net (but on Stack Overflow you can). Most of them are written by people who have never read the documentation, and most of these tricks are working by accident.

Chris.Stover
  • 516
  • 6
  • 14
regilero
  • 29,806
  • 6
  • 60
  • 99