![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
New Webmasters ask "How-To" questions here. This is where other fucking Webmasters help. |
|
Thread Tools |
![]() |
#1 |
Registered User
Join Date: May 2005
Posts: 20
|
.htaccess and 301 Redirect
Hi
I try to do some redirection, I want to redirect all blog post from my sub-domain ( but not from main sub-domain page) to my domain category page. sub.domain.com/all-post/ to domain.com/category/ (or even better to domain.com/category/random-post/ - but I don't believe that is possible... ) And I want to keep the main page of my sub-domain. Thanks! |
![]() |
![]() ![]() ![]() ![]() |
![]() |
#2 |
Registered User
Industry Role:
Join Date: Nov 2012
Posts: 50
|
did you try this www htaccessredirect dot net
|
![]() |
![]() ![]() ![]() ![]() |
![]() |
#3 |
Registered User
Join Date: May 2005
Posts: 20
|
I do not get what I need...
|
![]() |
![]() ![]() ![]() ![]() |
![]() |
#4 |
Registered User
Industry Role:
Join Date: Nov 2012
Posts: 50
|
Following is the basic redirection. However, looks like you need multiple filtration which should not be impossible...
Code:
RewriteEngine on RewriteCond %{HTTP_HOST} ^sub.yourdomain.com$ RewriteRule ^(.*)$ http://yourdomain.com/$1 [R=301,L] You will need one adddition line like RewriteCond %{REQUEST_URI} before rewrite rule. |
![]() |
![]() ![]() ![]() ![]() |
![]() |
#5 |
Confirmed User
Industry Role:
Join Date: Nov 2013
Posts: 234
|
If u want to redirect to random post u need to use php or any other lang ur using.
__________________
PornDeals.com - WebcamDeals.com - GayDeals.com - PornCoupons.com new! david{att}porndeals{dott}com (email) porndeals.d (skype) -- Looking for HQ hardlinks in all niches!!! -- Looking to buy websites with income & stable traffic! Contact me if you have something interesting ![]() |
![]() |
![]() ![]() ![]() ![]() |
![]() |
#6 |
It's 42
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
|
Code:
301 Redirect Entire Directory ^ RedirectMatch 301 /blog(.*) http://www.askapache.com/$1 try out in that sub domain's .htaccess Code:
RedirectMatch 301 /all-post(.*) http://domain.com/category/$1 http://www.askapache.com/htaccess/htaccess.html if the above won't work read the code posts here. |
![]() |
![]() ![]() ![]() ![]() |
![]() |
#7 |
Registered User
Join Date: May 2005
Posts: 20
|
I buy on fiverr for 5$ this htaccess code, and it is working for me:
Code:
RewriteCond %{HTTP_HOST} ^boobs\.domain\.c o m [NC] RewriteCond %{REQUEST_URI} ^/([0-9]{4})/([0-9]{2})/([^/]+)/$ RewriteRule (.+) h t t p://domain.c o m/category/boobs-busty/ [R=301,L] |
![]() |
![]() ![]() ![]() ![]() |
![]() |
#8 | |
Registered User
Industry Role:
Join Date: Nov 2012
Posts: 50
|
Quote:
i knew about REQUEST_URI but couldn't figure it out. lol thanks for sharing with us! it might save 5 bucks for many. |
|
![]() |
![]() ![]() ![]() ![]() |