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 y pidiendo una página concreta


Published in: Apache 


Rediccionamiento Apache desde una IP determinada y pidiendo una página concreta


  1. Options +FollowSymlinks
  2. RewriteEngine on
  3. RewriteCond %{REMOTE_HOST} !^123\.45\.67\.89
  4. RewriteCond %{REQUEST_URI} !/alternate_page\.html$
  5. RewriteRule (.*) http://www.territoriocreativo.es/$1 [R=301,L]

Report this snippet 

You need to login to post a comment.