We Recommend

Pro Apache Pro Apache
In addition to installation, maintenance, and deployment, the book demonstrates how to configure Apache to use Perl, PHP, and Python as server-side scripting languages. And unlike other books on Apache, Pro Apache provides comprehensive information on both major revisions - 1.3 and 2.0 - of the software.


Ballyhoo


Posted By

estebant on 05/09/08


Tagged

htaccess apache


Versions (?)


Rediccionamiento Apache desde una IP determinada


Published in: Apache 


Redirecciona una petición HTTP de Apache a una URL, salvo los que tenga una IP determinada.


  1. Options +FollowSymlinks
  2. RewriteEngine on
  3. RewriteCond %{REMOTE_HOST} !^80\.38\.0\.115
  4. RewriteRule (.*) http://www.territoriocreativo.es/$1 [R=301,L]
  5. BEGIN WordPress

Report this snippet 

You need to login to post a comment.