Results 1 to 7 of 7
-
14th Sep 2012, 01:08 PM #1OPMemberWebsite's:
WarezME.org.htaccess redirect
Hi,
Anyone willing to help on a thing or two...
I would like to redirect ALL 404 error pages from a domain to a subdomain.
So like:
Code:www.page.com/post2857html
sub.page.com/post2857.html
Cheers!batori Reviewed by batori on . .htaccess redirect Hi, Anyone willing to help on a thing or two... I would like to redirect ALL 404 error pages from a domain to a subdomain. So like: www.page.com/post2857html On error would go on to : Rating: 5
-
14th Sep 2012, 02:41 PM #2Member
Try this:
ErrorDocument 404 /
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^([a-z0-9\-]+)\.domain\.com$ [NC]
RewriteCond %1 !^www$ [NC]
RewriteRule (.*) http://domain.com/%1 [R=301,L,NC]
-
14th Sep 2012, 02:55 PM #3OPMemberWebsite's:
WarezME.orgThanks for the help and quick reply.
I've tried it and it does not seem to work
I need to redirect 404 error when they occur : MYDOMAIN.COM/mypost.html to TEST.MYDOMAIN.COM/mypost.html
-
14th Sep 2012, 03:01 PM #4Member
Oh dam, I posted the opposite I guess.
-
14th Sep 2012, 03:14 PM #5OPMemberWebsite's:
WarezME.orgIm a noob on this ... i can't make the opposite
-
28th Sep 2012, 02:48 PM #6MemberWebsite's:
phiferindia.com saspapercupmachine.combatori..I think this website - www.404errorpages.com will give you a detailed information on 404 pages.
-
29th Sep 2012, 05:14 PM #7Respected Member
You can also add your own 404.shtml file to redirect a page not found. Usually the cpanel has an icon to do that. Or do it manually.
for the .htaccess try this:
Code:ErrorDocument 404 / RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^([a-z0-9\-]+)\.domain\.com$ [NC] RewriteCond %1 !^www$ [NC] RewriteRule (.*) http://test.domain.com/%1 [R=301,L,NC]
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
How to rewrite/redirect a folder name with .htaccess
By GBot in forum Whitehat SEOReplies: 0Last Post: 14th Dec 2013, 07:16 AM -
Redirect from one site to another site using .htaccess
By NaHoW in forum Web Application/Script SupportReplies: 0Last Post: 17th Sep 2012, 05:37 PM -
.htaccess 302 redirect
By av0id in forum Technical Help Desk SupportReplies: 2Last Post: 6th Mar 2012, 01:52 AM -
How to Redirect using htaccess
By AJ Blacklisted in forum Web Application/Script SupportReplies: 4Last Post: 20th Dec 2011, 08:38 AM
themaPoster - post to forums and...
Version 5.22 released. Open older version (or...