apache rewrite应用实例

1、仅允许特定IP地址访问特定页面,不匹配跳转到指定页面;
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^192.168.2.10
RewriteCond %{REMOTE_ADDR} !^192.168.3.11 [NC]
RewriteCond %{REQUEST_URI} ^/myhome/index/$ [NC]
RewriteRule (.*) /404/index.html

其中/404/index.html目录文件,是站点根目录路径
2、访问特定url,跳转到特定链接;

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/home/
RewriteRule ^/home/(.*) http://www.gaizaoren.org/$1 [R=permanent,L]

你可能感兴趣的:(运维)