Permanently Redirect a Specific IP Request for a Single Page via htaccess
Not the most interesting title, but “oh well”..
Recently, a reader named Alison left a comment requesting help with a particular htaccess trick. She wanted to know how to permanently redirect (301) all requests for a specific page when requested from a specific IP address. In other words, when a visitor coming from 123.456.789
requests the page requested-page.html
, the visitor will be redirected to just-for-you.html
. All visitors not coming from that specific IP address are not redirected, and thus will see the originally requested page. Further, the redirect must apply only to requested-page.html
, such that every visitor — including the one coming from 123.456.789
— will be able to see all of the other pages. Here is the htaccess code to make it happen:
# permanently redirect specific IP request for single page
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} 123\.456\.789
RewriteCond %{REQUEST_URI} /requested-page\.html$
RewriteRule .* /just-for-you.html [R=301,L]
To use this redirect, simply edit the IP address, requested page, and redirect page. Copy and paste the code into your htaccess file and upload to your server. Test the 301 redirect via proxy and that’s it. Relax and enjoy!
83 responses to “Permanently Redirect a Specific IP Request for a Single Page via htaccess”
@Hamster: The code presented in the article will work with any web-served document, XHTML, HTML, PHP, or otherwise. You will need access to an htaccess file (or the Apache config file) to implement it, but once in place, it should work just fine.
Great bit of code, I came to comments as I had a question and found my answer here :) Thanks to the coder!
My pleasure, Emmx, thanks for the positive feedback :)
Would this work with myspace?
Hi lenny,
No, unfortunately the redirect method described in the article is a server-side technique that requires server access to implement. I think MySpace recently restricted server access to staff only, sadly..
I’ve setup the redirect in my .htaccess above – but has anyone else found that it slows down regular access to the web site?
I tested blocking my IP – took a while for the redirected page to appear, when I tried it from another connection – I couldn’t access my site, it just stayed there trying to find the page.
Is this something I’ve done?
@Sheps: Nope, Apache is great at handling simple redirects (and even complicated ones!). Granted, using
mod_rewrite
is not the optimal way of identifying IP addresses, but it is needed to accomplish the URL-specific redirect. Perhaps there is another issue involved..?How to redirect using .htaccess
from:
mysite.com/index.php?option=com_jdownloads&Itemid=49&task=viewcategory&catid=9
to:
mysite.com/index.php?option=com_jdownloads&Itemid=49&task=viewcategory&catid=7
it ‘s not working if use
%{REQUEST_URI}
@Almir: Try targeting the query string via the
%{QUERY_STRING}
variable.can you post example using query string, please
Sure, here is a basic example of how to target the query string:
<ifmodule mod_rewrite.c>
RewriteCond %{QUERY_STRING} target\-string\-01 [NC,OR]
RewriteCond %{QUERY_STRING} target\-string\-02 [NC]
RewriteRule .* - [F,L]
</ifmodule>
That should provide enough information to facilitate further research via Google or your favorite search engine. Replace each of the target strings to match your desired query string and you should be good to go!
This works great for redirecting a specific requested page from a specific IP to a custom page on your site.
Is it possible to redirect for any/all pages requested on the site. I still want to send that specific IP request to a custom page just for them.
# permanently redirect specific IP request for single page
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} 123.456.789
RewriteCond %{REQUEST_URI} /requested-page.html$
RewriteRule .* /just-for-you.html [R=301,L]