2008/2/4, Joshua Slive <[EMAIL PROTECTED]>:
> On Feb 4, 2008 1:43 AM, Zbigniew Szalbot <[EMAIL PROTECTED]> wrote:
>
> > The thing is that in order to provide blogs in two languages I cannot
> > install one blog and make it display in two languages. It needs to be
> > two blogs. Hence, they need to be in two separate directories. But I
> > am happy to do the langauge recognition in a common directory and then
> > redirect to a specific blog. Thank you!
>
> If you want the full language negotiation done by apache (checking
> priorities, etc), then your meta-refresh hack may indeed be the best
> idea. (I almost never suggest that, since it is much better to do
> proper HTTP redirects. But this is a special case. I don't know a
> clean way to get mod_negotiation to generate an external redirect.)
>
> If you just want to do a simple scan of the browser's accept-language,
> you can use mod_rewrite:
>
> RewriteCond %{HTTP:Accept-Language} ^pl$
> RewriteRule ^/blog/?$ http://yoursite.example.com/blog/pl/ [R,L]
> RewriteRule ^/blog/?$ http://yoursite.example.com/blog/en/ [R]

One more question here... the above does not work. I even pointed it
to another file in the current directory (blog)

RewriteRule ^/blog/?$ http://yoursite.example.com/blog/file.html [R,L]

but it would not open it either.

error log says nothing.

Thanks!

-- 
Zbigniew Szalbot

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to