浏览代码

Fixed #26055 -- Removed an orphaned phrase in docs/howto/deployment/wsgi/modwsgi.txt.

Tim Graham 9 年之前
父节点
当前提交
db8f462494
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      docs/howto/deployment/wsgi/modwsgi.txt

+ 3 - 4
docs/howto/deployment/wsgi/modwsgi.txt

@@ -160,10 +160,9 @@ If, however, you have no option but to serve media files on the same Apache
 ``VirtualHost`` as Django, you can set up Apache to serve some URLs as
 static media, and others using the mod_wsgi interface to Django.
 
-This example sets up Django at the site root, but explicitly serves
-``robots.txt``, ``favicon.ico``, any CSS file, and anything in the
-``/static/`` and ``/media/`` URL space as a static file. All other URLs
-will be served using mod_wsgi:
+This example sets up Django at the site root, but serves ``robots.txt``,
+``favicon.ico``, and anything in the ``/static/`` and ``/media/`` URL space as
+a static file. All other URLs will be served using mod_wsgi:
 
 .. code-block:: apache