Monday, 2 March 2015

Apache Url Rewrite

http://httpd.apache.org/docs/2.4/rewrite/remapping.html


<VirtualHost *:80>

   ServerName mydomain.com
   ServerAlias www.mydomain.com

<Directory /var/www/>
   Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
    RewriteEngine on
    #RewriteLog  var/log/apache2/rewrite.log
    #RewriteLogLevel 3
    RewriteRule   ^(.*)$ http://10.11.12.13/skb/app/domain.com/login [R]
 </Directory>
</VirtualHost>