Magento Expert Forum - Improve your Magento experience

Results 1 to 4 of 4

Last modified header won't show up

  1. #1

  2. #2
    New member LayBunner's Avatar
    Join Date
    Jan 2015
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    What 's your .htaccess file content. What did you set? Do you have any proxy.

  3. #3
    New member
    Join Date
    Jan 2015
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Here is the code of my htaccess:
    # ----------------------------------------------------------------------
    # Верный MIME тип для всех файлов
    # ----------------------------------------------------------------------
    # Предотвращает MIME-связанные ошибки в Google Chrome при подключении внешних шрифтов.
    # Запрещает просматривать содержимое бинарных файлов (их принудительная загрузка).

    # JavaScript
    # Приведение Javascript к единому типу
    # http://tools.ietf.org/html/rfc4329#section-7.2
    AddType application/javascript js jsonp
    AddType application/json json
    AddEncoding gzip js

    # Аудио
    AddType audio/ogg oga ogg
    AddType audio/mp4 m4a f4a f4b

    # Видео
    AddType video/ogg ogv
    AddType video/mp4 mp4 m4v f4v f4p
    AddType video/webm webm
    AddType video/x-flv flv

    # SVG
    # Требуется для svg шрифтов на iPad
    # https://twitter.com/FontSquirrel/status/14855840545
    AddType image/svg+xml svg svgz
    AddEncoding gzip svgz

    # Веб-шрифты
    AddType application/vnd.ms-fontobject eot
    AddType application/x-font-ttf ttf ttc
    AddType font/opentype otf
    AddType application/x-font-woff woff

    # Остальное
    AddType image/x-icon ico
    AddType image/webp webp
    AddType text/cache-manifest appcache manifest
    AddType text/x-component htc
    AddType application/xml rss atom xml rdf
    AddType application/x-chrome-extension crx
    AddType application/x-opera-extension oex
    AddType application/x-xpinstall xpi
    AddType application/octet-stream safariextz
    AddType application/x-web-app-manifest+json webapp
    AddType text/x-vcard vcf
    AddType application/x-shockwave-flash swf
    AddType text/vtt vtt
    # ----------------------------------------------------------------------
    # Убираем или оставляем "www." в начале ссылок
    # ----------------------------------------------------------------------
    # Одинаковый контент никогда не должен быть доступен по двум различным ссылкам -
    # особенно под различными доменами, так как это может вызывать проблемы с SEO -
    # дублированный контент. Поэтому вы должны четко выбрать один из вариантов.

    # По умолчанию, включен вариант 1 (без "www.").
    # http://no-www.org/faq.php?q=class_b

    # Если вы предпочитаете использовать вариант 2, просто закомментируйте вариант 1
    # и раскомментируйте вариант 2.

    # ВАЖНО: НИКОГДА НЕ ИСПОЛЬЗУЙТЕ ОБА ВАРИАНТА ОДНОВРЕМЕННО!

    # ----------------------------------------------------------------------
    # Вариант 1:
    # Замена "www.example.com -> example.com".
    <IfModule mod_rewrite.c>
    RewriteCond %{HTTPS} !=on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
    </IfModule>

    # ----------------------------------------------------------------------
    # Вариант 2:
    # Замена "example.com -> www.example.com".
    # Этот вариант не очень хорошая идея, если вы используете не виртуальные поддомены.

    # <IfModule mod_rewrite.c>
    # RewriteCond %{HTTPS} !=on
    # RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
    # RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    # </IfModule>
    # ----------------------------------------------------------------------



    AddEncoding gzip .gz
    <FilesMatch "\.js.gz$">
    ForceType text/javascript
    Header set Content-Encoding: gzip
    </FilesMatch>
    <FilesMatch "\.js$">
    RewriteCond %{HTTP_USER_AGENT} !".*Safari.*"
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{REQUEST_FILENAME}.gz -f
    RewriteRule (.*)\.js$ $1\.js.gz [L]
    ForceType text/javascript
    </FilesMatch>
    <FilesMatch "\.css.gz$">
    ForceType text/css
    Header set Content-Encoding: gzip
    </FilesMatch>
    <FilesMatch "\.css$">
    RewriteCond %{HTTP_USER_AGENT} !".*Safari.*"
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{REQUEST_FILENAME}.gz -f
    RewriteRule (.*)\.css$ $1\.css.gz [L]
    ForceType text/css
    </FilesMatch>


    SSILastModified on
    XBitHack full
    ############################################
    ## uncomment these lines for CGI mode
    ## make sure to specify the correct cgi php binary file name
    ## it might be /cgi-bin/php-cgi

    # Action php5-cgi /cgi-bin/php5-cgi
    # AddHandler php5-cgi .php

    AddHandler server-parsed .phtml

    ############################################
    ## default index file

    DirectoryIndex index.php

    <IfModule mod_php5.c>

    ############################################
    ## adjust memory limit

    # php_value memory_limit 64M
    php_value memory_limit 256M
    php_value max_execution_time 18000

    ############################################
    ## disable magic quotes for php request vars

    php_flag magic_quotes_gpc off

    ############################################
    ## disable automatic session start
    ## before autoload was initialized

    php_flag session.auto_start off

    ############################################
    ## enable resulting html compression

    #php_flag zlib.output_compression on

    ###########################################
    # disable user agent verification to not break multiple image upload

    php_flag suhosin.session.cryptua off

    ###########################################
    # turn off compatibility with PHP4 when dealing with objects

    php_flag zend.ze1_compatibility_mode Off

    </IfModule>

    <IfModule mod_security.c>
    ###########################################
    # disable POST processing to not break multiple image upload

    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>

    <IfModule mod_deflate.c>
    # Включаем deflate для не стандартных заголовков:
    # http://developer.yahoo.com/blogs/ydn...yond-gzipping/
    <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
    SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
    RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
    </IfModule>
    </IfModule>
    <IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/css \
    application/json text/javascript application/javascript application/x-javascript text/x-js text/ecmascript application/ecmascript text/vbscript text/fluffscript \
    text/xml application/xml text/x-component \
    application/xhtml+xml application/rss+xml application/atom+xml \
    image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
    </IfModule>
    </IfModule>

    <IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE text/javascript
    AddOutputFilterByType DEFLATE text/css
    <IfModule mod_setenvif.c>
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    </IfModule>
    </IfModule>

    <IfModule mod_ssl.c>

    ############################################
    ## make HTTPS env vars available for CGI mode

    SSLOptions StdEnvVars

    </IfModule>

    <IfModule mod_rewrite.c>

    ############################################
    ## enable rewrites

    Options +FollowSymLinks
    RewriteEngine on

    ############################################
    ## you can put here your magento root folder
    ## path relative to web root

    #RewriteBase /magento/

    ############################################
    ## uncomment next line to enable light API calls processing

    # RewriteRule ^api/([a-z][0-9a-z_]+)/?$ api.php?type=$1 [QSA,L]

    ############################################
    ## rewrite API2 calls to api.php (by now it is REST only)

    RewriteRule ^api/rest api.php?type=rest [QSA,L]

    ############################################
    ## workaround for HTTP authorization
    ## in CGI environment

    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    ############################################
    ## TRACE and TRACK HTTP methods disabled to prevent XSS attacks

    RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
    RewriteRule .* - [L,R=405]

    ############################################
    ## redirect for mobile user agents

    #RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
    #RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|oper a mobile|palmos|webos|googlebot-mobile" [NC]
    #RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]

    ############################################
    ## always send 404 on missing files in these folders

    RewriteCond %{REQUEST_URI} !^/(media|skin|js)/

    ############################################
    ## never rewrite for existing files, directories and links

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l

    ############################################
    ## rewrite everything else to index.php

    RewriteRule .* index.php [L]

    </IfModule>


    ############################################
    ## Prevent character encoding issues from server overrides
    ## If you still have problems, use the second line instead

    AddDefaultCharset Off
    #AddDefaultCharset UTF-8


    # ----------------------------------------------------------------------
    # Задаем Expires заголовки (срок актуальности файла) (для лучшего кэширования)
    # ----------------------------------------------------------------------
    # Указываются заголовки с большим сроком "годности",
    # предполагается, что вы используете кэш на основе названий файлов (all.css?v001).
    # В дополнение, учтите, что старые прокси могут кэшировать не верно
    # http://www.stevesouders.com/blog/200...e-querystring/

    # Если вы не используете названия файлов для контроля версий, измените кэш для CSS и JS, например на
    # "access plus 1 week".
    <IfModule mod_expires.c>
    ExpiresActive on

    # Задаем значение по умолчанию (для всех файлов)
    ExpiresDefault "access plus 1 month"

    # Ваш html документ
    <FilesMatch \.(html|xhtml|xml|shtml|phtml|php|txt)$>
    ExpiresDefault "access plus 0 seconds"
    </FilesMatch>
    ExpiresByType text/html "access plus 1 month"

    # Данные
    ExpiresByType text/xml "access plus 1 month"
    ExpiresByType application/xml "access plus 1 month"
    ExpiresByType application/json "access plus 1 month"

    # Рассылка
    ExpiresByType application/rss+xml "access plus 1 month"
    ExpiresByType application/atom+xml "access plus 1 month"

    # Favicon (не может быть переименован)
    <FilesMatch \.(ico)$>
    ExpiresDefault "access plus 1 week"
    </FilesMatch>
    ExpiresByType image/x-icon "access plus 1 month"

    # Медиа: изображения, видео, аудио
    <FilesMatch \.(gif|png|jpg|jpeg|ogg|mp4|mkv|flv|swf|wmv|asf|as x|wma|wax|wmx|wm)$>
    ExpiresDefault "access plus 1 year"
    </FilesMatch>
    ExpiresByType image/gif "access plus 1 month"
    ExpiresByType image/png "access plus 1 month"
    ExpiresByType image/jpeg "access plus 1 month"
    ExpiresByType video/ogg "access plus 1 month"
    ExpiresByType audio/ogg "access plus 1 month"
    ExpiresByType video/mp4 "access plus 1 month"
    ExpiresByType video/webm "access plus 1 month"

    # HTC файлы (css3pie)
    ExpiresByType text/x-component "access plus 1 month"

    # Веб-шрифты
    <FilesMatch \.(eot|ttf|otf|svg|woff)$>
    ExpiresDefault "access plus 1 year"
    </FilesMatch>
    ExpiresByType application/x-font-ttf "access plus 1 month"
    ExpiresByType font/opentype "access plus 1 month"
    ExpiresByType application/x-font-woff "access plus 1 month"
    ExpiresByType image/svg+xml "access plus 1 month"
    ExpiresByType application/vnd.ms-fontobject "access plus 1 month"

    # CSS и JavaScript
    <FilesMatch \.(css|js)$>
    ExpiresDefault "access plus 1 month"
    </FilesMatch>
    ExpiresByType text/css "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 month"

    # Статичные ресурсы
    <FilesMatch \.(swf|pdf|doc|rtf|xls|ppt)$>
    ExpiresDefault "access plus 1 year"
    </FilesMatch>
    ExpiresByType application/x-shockwave-flash "access plus 1 month"
    ExpiresByType application/pdf "access plus 1 month"
    ExpiresByType application/msword "access plus 1 month"
    ExpiresByType application/rtf "access plus 1 month"
    ExpiresByType application/vnd.ms-excel "access plus 1 month"
    ExpiresByType application/vnd.ms-powerpoint "access plus 1 month"
    </IfModule>


    ## EXPIRES CACHING ##

    # ----------------------------------------------------------------------
    # Удаление ETag + Cache-Control
    # ----------------------------------------------------------------------
    # FileETag None бывает не достаточно (для некоторых серверов).
    <IfModule mod_headers.c>
    Header unset ETag
    # Так как мы посылаем expires заголовки с большим сроком,
    # мы не используем ETag для статичного контента.
    # http://developer.yahoo.com/performance/rules.html#etags
    FileETag None

    ## Браузер должен обновлять документ после заданного в секундах времени, которое задается в Cache-Control.
    <FilesMatch \.(html|xhtml|xml|shtml|phtml|php|txt)$>
    Header set Cache-Control "max-age=31556926, private, must-revalidate"
    </FilesMatch>
    <FilesMatch \.(ico|gif|png|jpg|jpeg|ogg|mp4|mkv|flv|swf|wmv|as f|asx|wma|wax|wmx|wm)$>
    Header set Cache-Control "max-age=31556926, private, must-revalidate"
    </FilesMatch>
    <FilesMatch \.(eot|ttf|otf|svg|woff)$>
    Header set Cache-Control "max-age=31556926, private, must-revalidate"
    </FilesMatch>
    <FilesMatch \.(css|js)$>
    Header set Cache-Control "max-age=31556926, private, must-revalidate"
    </FilesMatch>
    <FilesMatch \.(swf|pdf|doc|rtf|xls|ppt)$>
    Header set Cache-Control "max-age=31556926, public"
    </FilesMatch>
    </IfModule>



    ############################################
    ## By default allow all access

    Order allow,deny
    Allow from all

    ###########################################
    ## Deny access to release notes to prevent disclosure of the installed Magento version

    <Files RELEASE_NOTES.txt>
    order allow,deny
    deny from all
    </Files>

    ############################################
    ## If running in cluster environment, uncomment this
    ## http://developer.yahoo.com/performance/rules.html#etags

    #FileETag none

    # ----------------------------------------------------------------------
    # Кроссдоменные изображения (CORS-enabled images) (@crossorigin)
    # ----------------------------------------------------------------------
    # Отсылать CORS заголовки, если браузер требует их, для изображений по умолчанию включено.
    # http://developer.mozilla.org/en/CORS_Enabled_Image
    # http://blog.chromium.org/2011/07/usi...webgl-and.html
    # http://hacks.mozilla.org/2011/11/usi...domain-images/
    # wiki.mozilla.org/Security/Reviews/crossoriginAttribute

    <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
    # mod_headers, ну почему ты не определяешь Content-Type?!
    <FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
    SetEnvIf Origin ":" IS_CORS
    Header set Access-Control-Allow-Origin "*" env=IS_CORS
    </FilesMatch>
    </IfModule>
    </IfModule>

    # ----------------------------------------------------------------------
    # Доступ к веб-шрифтам
    # ----------------------------------------------------------------------
    # Разрешает доступ к веб-шрифтам из всех доменов.
    # В качестве альтернативы, можно добавить домен
    # в белый список, например "subdomain.example.com".

    <IfModule mod_headers.c>
    <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
    Header set Access-Control-Allow-Origin "*"
    </FilesMatch>
    </IfModule>



    # Опция "-Indexes" заблокирует возможность просматривать директории посетителями.
    # Нельзя позволять случайным пользователям просматривать служебные директории вашей CMS.
    <IfModule mod_autoindex.c>
    Options -Indexes
    </IfModule>

    # Блокировка доступа к "скрытым" директориям и файлам, чьи названияначинаются с точки.
    # Такие директории могут использоваться системами контроля версий, например Subversion или Git.
    <IfModule mod_rewrite.c>
    RewriteCond %{SCRIPT_FILENAME} -d [OR]
    RewriteCond %{SCRIPT_FILENAME} -f
    RewriteRule "(^|/)\." - [F]
    </IfModule>

    # Блокировка доступа к резервным копиям и исходникам. Некоторые файлы могут быть оставлены
    # текстовыми редакторами и предоставлять собой большую опасность, если они будут доступны каждому.
    <FilesMatch "(\.(bak|config|sql|fla|ini|log|sh|inc|swp|dist)|~ )$">
    Order allow,deny
    Deny from all
    Satisfy All
    </FilesMatch>

  4. #4
    New member
    Join Date
    Jan 2015
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Though I do belive the problem is within nginx

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •