The .htaccess file can be used in apache server to have it’s own configuration per directory. 1: First step is to enable mod_rewrite module sudo a2enmod rewrite 2: Now restart the apache server sudo service apache2 restart 3: Open the…
Tag: web-server
Apache Tomcat option not showing in servers in Eclipse
If you cant find Apache tomcat server option in the Server adding option follow the steps below. 1. Search Apache Server in market place and install Eclipse JST server Adapters like shown in the image 2. After restarting eclipse you…
Shell Script to Run Django Development Server Automatically
We all know how boring it can be to start the django development server each time. entering the same commands over and over. The good news is that you can write a simple shell script to do so. and after…