3

在我的 django settings.py 文件中,我有六种活动语言:

LANGUAGES = (
('de', gettext_noop('German')),
('en', gettext_noop('English')),
('es', gettext_noop('Spanish')),
('fr', gettext_noop('French')),
('nl', gettext_noop('Dutch')),
('pt', gettext_noop('Portuguese')),
)

这些页面在使用 i18n 模式时效果很好:

 http://exmaple.com/de/main
 http://exmaple.com/nl/main
 etc...

但是,如果您在 Google 中搜索我的网站,您会看到多个页面的语言前缀。有些是我不支持的语言。其中一些甚至不存在:

http://examble.com/ch/main
http://exmaple.com/zz/main
etc..

我不确定为什么这些页面会被编入索引。它们不在我的站点地图中。但是,Django 确实将它们作为页面提供。

问题,修改 i18n_patterns 以使其仅允许 settings.py 中定义的有效、活动语言的最佳方法是什么?我希望所有其他 2 个字符前缀为 404。

4

2 回答 2

1

最好的解决方案(我知道)是使用solid-i18n-urls

安装包:

pip install solid_i18n

稍微修改设置:

# Default language, that will be used for requests without language prefix
LANGUAGE_CODE = 'en'

# supported languages
LANGUAGES = (
    ('en', 'English'),
    ('ru', 'Russian'),
)

# enable django translation
USE_I18N = True

#Add SolidLocaleMiddleware instead of LocaleMiddleware to MIDDLEWARE_CLASSES:
MIDDLEWARE_CLASSES = (
   'django.contrib.sessions.middleware.SessionMiddleware',
   'solid_i18n.middleware.SolidLocaleMiddleware',
   'django.middleware.common.CommonMiddleware',
)

使用solid_i18n_patterns 而不是i18n_patterns

from django.conf.urls import patterns, include, url
from solid_i18n.urls import solid_i18n_patterns

urlpatterns = solid_i18n_patterns('',
    url(r'^main/$', 'about.view', name='about'),
)

现在,如果您按照您的语言 linst 中指定的方式访问它,但如果您访问example.com/en/main它,则会引发 404 page not found 错误。enexample.com/ch/main

于 2014-10-18T11:50:15.330 回答
1

这不是一个直接的解决方案,但可以帮助您或为您指出一个好的解决方案。

  • 自定义中间件呢?

在这里,我们有 2 个选项:

  1. 一个中间件,您可以在其中检查用户所在的国家/地区并重定向到您允许的国家/地区(如果不允许用户所在的国家/地区,您可以重定向到自定义 url 或显示 404 错误)

  2. 一个中间件,您可以在其中检查客户端的 url-path,因此您将拥有/country_code/url并且可以按照上述方式执行操作,如果不允许该路径,您可以重定向到自定义 url 或显示 404 错误

小例子:

1.检查国家的中间件

示例中使用pygeoIP通过 ip 获取国家/地区

import pygeoip

class CountryMiddleware:
    def process_request(self, request):
        allowed_countries = ['GB','ES', 'FR']  # Add your allowed countries
        gi = pygeoip.GeoIP('/usr/share/GeoIP/GeoIP.dat', pygeoip.MEMORY_CACHE)
        ip = request.META.get('REMOTE_ADDR')
        user_country = gi.country_code_by_addr(ip)

        if user_country not in allowed_countries:
            return HttpResponse... # Here you decide what to do if the url is not allowed
            # Show 404 error
            # or Redirect to other page... 

2.一个检查url的中间件

class DomainMiddleware:
    def process_request(self, request):
        """Parse out the subdomain from the request"""        
        # You especify full path or root paths
        # If you specify '/en' as allowed paths, '/en/whatever' are allowed
        ALLOWED_PATHS = ['/en','/fr', '/es']  # You add here allowed paths'
        path = request.path
        can_access = False
        for url in ALLOWED_PATHS:  # Find if the path is an allowed url 
            if url in path:  # If any allowed url is in path
                can_access=True
                break

        if not can_access:  # If user url is not allowed
            return HttpResponse... # Here you decide what to do if the url is not allowed
            # Show 404 error
            # or Redirect to other page... 

如果您决定使用这些选项中的任何一个,您必须记住:

  • 需要在路径中添加中间件文件your_project/middleware/middlewarefile.py
  • 您需要在 settings.py 中添加中间件:

    MIDDLEWARE_CLASSES = (

    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    # etc.....
    'yourproject.middleware.domainmiddleware.DomainMiddleware',
    

    )

  • 我在这里展示的代码没有完成或测试,它是一个帮助你找到好的解决方案的方向

于 2014-10-23T10:43:24.683 回答