redirect from subdomain on home page
-
harisg7
-
Topic Author
-
Offline
-
New Member
-
Less
More
-
Posts: 1
-
Thank you received: 0
-
-
11 years 6 months ago - 11 years 6 months ago #1077
by harisg7
Hello there!
I want to redirect all my subdomains and articles to the home page.
Example:
From: subdomain.site.com
To: site.com
I have J1.5.
Last edit: 11 years 6 months ago by harisg7.
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 3194
-
Thank you received: 441
-
-
11 years 6 months ago #1079
by admin
Hi,
unfortunately this cannot be done with ReDJ for Joomla 1.5. The reason is this version works only on the REQUEST_URI part, so is not possible to create rule for domain part. This feature is available in ReDJ for Joomla 2.5 and 3.0.
The good news is you can do this with a simple .htaccess rule.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^subdomain.site.com [NC]
RewriteRule ^(.*)$ http://site.com/$1 [L,R=301]
Kind regards,
Luigi
Please Log in or Create an account to join the conversation.
Time to create page: 0.135 seconds