Rewrite Rules per .htacess
This is some content that will be displayed to all paying Members. In example.com/.htaccess: RewriteCond %{HTTP_HOST} ^123\.123\.123\.123 RewriteRule ^sub_dir/(.*)$ http://www.example.com/sub_dir/$1 [R=301,L] This does the ip redirect only for the /sub_dir/ subdirectory In example.com/sub_dir/.htaccess: RewriteCond %{HTTP_HOST} ^123\.123\.123\.123 RewriteRule (.*) http://www.example.com/sub_dir/$1 [R=301,L] … Weiterlesen