![]() |
need some help with a .htaccess rewrite rule..
I'm trying to do the following with a .htaccess rule (apache2), but till now with no luck.
test-a.website.com should show website.com/test-a/index.html test-b.website.com should show website.com/test-b/index.html I would also (if possible) to still show "test-a.website.com" as URL, and not redirect it to "website.com/test-a/inde.html" (same thing for test-b.website.com) I guess it's done with a rewrite rule.. but how? Thanks for any info.. |
Don't think you can do that since by default you don't have wildcard set for subdomains i think.. Try by inserting that code to vhosts.conf file. There it should work since ISPConfig does it the same way if you create a co-domain.
|
Thanks for the input TheRudy.
I was using the Vhosts_ispconfig.conf to do this, but I was kind of hoping that this could be done with a .htaccess file! |
This "kind of" does the job exept that it's showing the new URL!
ReWriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} test-a.website.com$ [NC] RewriteRule ^(.*)$ http://website.com/test-a/index.html [R] RewriteCond %{HTTP_HOST} test-b.website.com$ [NC] RewriteRule ^(.*)$ http://website.com/test-b/index.html [R] |
R = redirection aka from typed URL to the one you provide in the rule.. You wanted it to stay subdomain, no? :)
|
Quote:
|
Quote:
|
Got it!
Code:
RewriteEngine On url: "test-b.website.com" will now load the stuff that is in "website.com/test-b/" and still show "test-b.website.com" as url |
| All times are GMT +2. The time now is 23:44. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.