Check if Apache is running
ps aux|grep httpd
Telnet to port 80 to see if it connects
telnet localhost 80
Check if Apache is running
ps aux|grep httpd
Telnet to port 80 to see if it connects
telnet localhost 80
1. First install the apache with this command:
apt-get install apache2
2. Now use locate to find if the mod_rewrite.so is availble on your server:
updatedb
locate mod_rewrite.so
it will found in “/usr/lib/apache2/modules” Continue reading