Jump to content

wulfx01

VIP+
  • Posts

    143
  • Joined

  • Last visited

  • Days Won

    26
Posts posted by wulfx01
 
 
  1. 4 minutes ago, Legionaire said:

     

    Wo haben Sie die Änderung im ACP vorgenommen, da andere das gleiche Problem haben?

    acp... Search engine optimization
    ... Rewrite URLs? to no... 
    If activated, friendly URLs do not contain 'index.php'.
    To support this, you need to download this file, upload it to the directory of your website and rename it to '.htaccess' (without file name). If a.htaccess file already exists, add the contents of that file to the existing one.
    If you are not sure how to do this, contact technical support.

     

     

    .........................................

     

    delete the .htaccess that is on the server

     

     

  2.  

    this is the one I have.

     

    ........................................................

     

    ## IPS Suite Forum SEO
    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    ## End IPS Suite Forum SEO

    ## Begin - Expires caching
    <IfModule mod_expires.c>

    ## This rule will create an ETag for files based only on the modification timestamp and their size. 
    ## Note: It may cause problems on your server and you may need to remove it
    FileETag MTime Size

    SetOutputFilter DEFLATE
    Header set Expires "max-age=29030400, public"
    Header unset ETag
    FileETag None

    # Enable expiration control
    ExpiresActive On

    # Default expiration: 1 hour after request
    ExpiresDefault "now plus 1 hour"

    # CSS and JS expiration: 1 week after request
    ExpiresByType text/css "now plus 1 week"
    ExpiresByType application/javascript "now plus 1 week"
    ExpiresByType application/x-javascript "now plus 1 week"

    # Image files expiration: 1 month after request
    ExpiresByType image/bmp "now plus 1 month" 
    ExpiresByType image/gif "now plus 1 month"
    ExpiresByType image/jpg "now plus 1 month"
    ExpiresByType image/jpeg "now plus 1 month"
    ExpiresByType image/jp2 "now plus 1 month"
    ExpiresByType image/pipeg "now plus 1 month"
    ExpiresByType image/png "now plus 1 month"
    ExpiresByType image/svg+xml "now plus 1 month"
    ExpiresByType image/tiff "now plus 1 month"
    ExpiresByType image/vnd.microsoft.icon "now plus 1 month"
    ExpiresByType image/x-icon "now plus 1 month"
    ExpiresByType image/ico "now plus 1 month"
    ExpiresByType image/icon "now plus 1 month"
    ExpiresByType text/ico "now plus 1 month"
    ExpiresByType application/ico "now plus 1 month"
    ExpiresByType image/vnd.wap.wbmp "now plus 1 month"
    ExpiresByType application/vnd.wap.wbxml "now plus 1 month"

    # Other optimizations
    ExpiresByType application/x-gzip "access plus 1 month"
    ExpiresByType application/x-shockwave-flash "access plus 1 month"

    </IfModule>
    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    ## End - Expires caching

 
×
  • Create New...