Welcome Guest, Not a member yet? Register   Sign In
htaccess question: is this correct?
#1

[eluser]codex[/eluser]
I'm testing my server on the implementation of wildcard DNS. I'd like to know if these conditions in the htaccess do what they're supposed to. If I'm correct, any request for a subdomain on scripto.nl should redirect to www.google.com. Right?:

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.scripto\.nl?$
RewriteCond %{HTTP_HOST} ^([^.]+)\.scripto\.nl?$

RewriteRule ^$ http://www.google.com
#2

[eluser]Sean Murphy[/eluser]
codex, yeah, that's the idea. It could be cleaned up some though.

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.scripto\.nl$
RewriteCond %{HTTP_HOST} ^([^\.]+)\.scripto\.nl$

RewriteRule ^$ http://www.google.com
#3

[eluser]codex[/eluser]
[quote author="Sean Murphy" date="1211833461"]codex, yeah, that's the idea. It could be cleaned up some though.

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.scripto\.nl$
RewriteCond %{HTTP_HOST} ^([^\.]+)\.scripto\.nl$

RewriteRule ^$ http://www.google.com
[/quote]

It was basically only a sample to see if the redirect would work. My host activated wildcard DNS and presto, the code worked. Now on to the real htaccess.




Theme © iAndrew 2016 - Forum software by © MyBB