For putting the web authentication we always use the .htaccess or apache configuration file. For removing the web auth from folder you need put following code in .htaccess file. without directory use the following code. #AuthType Basic #AuthName “By Invitation … Continue reading
Category Archives: Apache
How to protect your images directly accessing through server by apache
To protect your images or media file you should use apache rewrite rules. To protect your images or other files from being linked or used on another website. Due the this issue your images may be used by many sites. … Continue reading
How to configure haproxy load balancing on amazon ec2
Many people take amazon EC2 cloud hosting. Amazon does gives the load balancer for application load balancing. But Amazon load balancer is not that much good. Amazon load balancer is not working on hardware or software base. That balancer just … Continue reading
how to install Jmeter on Linux
Jmeter is basically used for load testing of web applications. JMeter is to first download the latest production release and install it. The release contains all of the files you need to build and run most types of tests, e.g. … Continue reading
How to remove the www from url with rewite rule
Now these days keeping www in URL is becoming old fashion. How can check many websites for that and the current example is twitter.com I specially dont like to put www in URL so we can easily remove the www … Continue reading
what is cloud hosting – Know In detail
In now day many times we heard about cloud hosting and cloud computing. Recently we heard from Matt (WordPress founder) also. Many web designers are not aware with cloud hosting. In this article I am going to write about in … Continue reading
How to add www to domain name through apache or htaccess
Just use following code in apache configuration file or .htaccess file. If you are using the shared hosting then please go with only .htaccess file. Just copy paste following code in .htaccess file. <IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteBase … Continue reading
How to start Activemq with XML configuration file
You can download Aapache activeMQ from following URL; http://activemq.apache.org/activemq-530-release.html Choose the your OS(Linux/Windows). After downloading apache-activemq-5.3.0-bin.zip. Extract the ActiveMQ. Open command prompt and go to activeMQ/bin directory and run the “activemq” command. ActiveMQ will start without configration. If you are … Continue reading
How to install SSL with apache on fedora
Just use following commands [root@localhost siwan]# yum install openssl [root@localhost siwan]# yum install openssl-devel [root@localhost siwan]# yum install mod_ssl This will start apache server. [root@localhost siwan]# /etc/init.d/httpd restart
How to use hosts file on Mac, Windows and Linux
The hosts file is a computer file used by an operating system to map hostnames to IP addresses. On many operating systems, the host file content is used preferentially over other methods, such as the Domain Name System (DNS). Unlike … Continue reading

