<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Tech-Recipes - Latest Comments in Redirect webpages or URLs using .htaccess</title><link>http://tech-recipes.disqus.com/</link><description>Cookbook of Tech Tutorials</description><atom:link href="https://tech-recipes.disqus.com/redirect_webpages_or_urls_using_htaccess/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 10 May 2011 11:15:42 -0000</lastBuildDate><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-200886913</link><description>&lt;p&gt; &lt;br&gt;How i can redirect an old web to a new web with their parameters?The command line im using for the .htaccess is redirect 301:http://200.37.59.94/juntosformajosdesarrollo.asp?por=1&amp;amp;en=18 to &lt;a href="http://www.acerosarequipa.com/index.php?id=juntosforjamosdesarrollo0Im" rel="nofollow noopener" target="_blank" title="http://www.acerosarequipa.com/index.php?id=juntosforjamosdesarrollo0Im"&gt;http://www.acerosarequipa.c...&lt;/a&gt; having problems what should i do?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Titogs2000</dc:creator><pubDate>Tue, 10 May 2011 11:15:42 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-126958888</link><description>&lt;p&gt;You can use .htaccess file in different folders too like:&lt;br&gt;/.htaccess - Main or Root folder&lt;br&gt;/content/.htaccess - .inside content folder&lt;br&gt;/content/html/images/.htaccess - inside images folder...try userself and protect your folders.&lt;/p&gt;&lt;p&gt;More Info: &lt;a href="http://node.technohub.in" rel="nofollow noopener" target="_blank" title="http://node.technohub.in"&gt;http://node.technohub.in&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Navin</dc:creator><pubDate>Mon, 10 Jan 2011 15:19:46 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-120527568</link><description>&lt;p&gt;gr8 post, thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peace Maker</dc:creator><pubDate>Wed, 29 Dec 2010 01:53:29 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-120527558</link><description>&lt;p&gt;nice article&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peace Maker</dc:creator><pubDate>Wed, 29 Dec 2010 01:53:28 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-74045519</link><description>&lt;p&gt;How long does it take to actually redirect? I followed exactly as stated and it doesn't redirect...Could this be that I am on a free hosting account? It supports uploading .htaccess files.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Shahid-namo</dc:creator><pubDate>Wed, 01 Sep 2010 19:03:18 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-48124378</link><description>&lt;p&gt;If you have any rules using RewriteRule within your .htaccess file, do NOT mix Redirect or RedirectMatch directives with the configuration of the same site. You'll end up with problems because RewriteRule comes from mod_Rewrite and the other two directives come from mod_Alias. You cannot guarantee the processing order. If redirects are processed after rewrites, you'll expose internal filepaths back onto the web as URLs.&lt;/p&gt;&lt;p&gt;RewriteRule ^oldpath\.ext$ &lt;a href="http://www.example.com/newpath.ext" rel="nofollow noopener" target="_blank" title="http://www.example.com/newpath.ext"&gt;http://www.example.com/newp...&lt;/a&gt; [R=301,L]&lt;/p&gt;&lt;p&gt;RewriteRule allows both external redirects (when a domain name and/or R flag is present) and internal rewrites (when the target is just an internal filepath). All rules always need the [L] flag.&lt;/p&gt;&lt;p&gt;RewriteRule can only see the path part of the literal GET request. With a preceding RewriteCond, you can also test the value of HTTP_HOST, QUERY_STRING, SERVER_PORT, REQUEST_URI, THE_REQUEST, REDIRECT_STATUS, and other request variables.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">g1smd</dc:creator><pubDate>Mon, 03 May 2010 02:34:43 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-42447343</link><description>&lt;p&gt;how do you write a redirect from &lt;a href="http://website.com" rel="nofollow noopener" target="_blank" title="http://website.com"&gt;http://website.com&lt;/a&gt; to &lt;a href="http://www.website.com" rel="nofollow noopener" target="_blank" title="http://www.website.com"&gt;http://www.website.com&lt;/a&gt; both seem to work for me and I do not want search engines to think i have mirror sites.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aaron Nichols</dc:creator><pubDate>Wed, 31 Mar 2010 10:04:31 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-42430170</link><description>&lt;p&gt;This is useful in 404 http error&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Globinch</dc:creator><pubDate>Wed, 31 Mar 2010 05:43:15 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-33890725</link><description>&lt;p&gt;Thanks for posting, I always seam to forget the syntax.   &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">digitalextrememediagroup</dc:creator><pubDate>Thu, 11 Feb 2010 12:47:10 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-32453870</link><description>&lt;p&gt;I really a good example of using 301 redirect&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.watchlivetv.us" rel="nofollow noopener" target="_blank" title="http://www.watchlivetv.us"&gt;http://www.watchlivetv.us&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">zahid</dc:creator><pubDate>Wed, 03 Feb 2010 00:46:32 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-30754210</link><description>&lt;p&gt;true&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guest</dc:creator><pubDate>Thu, 21 Jan 2010 20:20:50 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-30752003</link><description>&lt;p&gt;that's helpful&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guest</dc:creator><pubDate>Thu, 21 Jan 2010 19:58:55 -0000</pubDate></item><item><title>Re: Redirect webpages or URLs using .htaccess</title><link>http://www.tech-recipes.com/rx/3085/redirect-webpages-or-urls-using-htaccess/#comment-3496331</link><description>&lt;p&gt;How long does it take to actually redirect? I followed exactly as stated and it doesn't redirect...Could this be that I am on a free hosting account? It supports uploading .htaccess files.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jag</dc:creator><pubDate>Tue, 04 Nov 2008 18:17:19 -0000</pubDate></item></channel></rss>