Showing posts with label Apache. Show all posts
Showing posts with label Apache. Show all posts

RewriteEngine in Apache

1)

$ a2enmod rewrite

2)

$ /etc/init.d/apache2 restart

3)



    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

Virtual Host

1)sudo vim /etc/apache2/httpd.conf

VirtualHost
    ServerName xxxxxxxxxxxx_url
    DocumentRoot /var/www/xxx
/VirtualHost

2) sudo /etc/init.d/apache2 restart