skip to Main Content

Apache webserver status in Ubuntu

I have installed apache webserver in my Ubuntu machine and changed port to 8080 (/etc/apache2/apache2.conf, /etc/apache2/000-default.conf) and able to successfully load test page in browser Using below commands for administration (installed w3m as well): sudo apache2ctl start sudo apache2ctl stop…

VIEW QUESTION

Apache2 mod_rewrite difficulty with GET variables

On the website.conf file I have: <VirtualHost *:80> DocumentRoot /srv/http/website/cgi-bin ServerName website ServerAlias www.website RewriteEngine on RewriteRule ^$ "" RewriteRule ^([a-z]+)$ /?tab=repo ... My goal is to have http://localhost/ redirect to localhost and http://localhost/word redirect to http://localhost/?tab=word. With the current…

VIEW QUESTION
Back To Top
Search