xenforo 2 SSL ve www sorunu çözümü

guclusat

Tanınmış Üye
Süper Moderatör
Kod:
#    Mod_security can interfere with uploading of content such as attachments. If you
#    cannot attach files, remove the "#" from the lines below.
#<IfModule mod_security.c>
#    SecFilterEngine Off
#    SecFilterScanPOST Off
#</IfModule>

ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 405 default
ErrorDocument 406 default
ErrorDocument 500 default
ErrorDocument 501 default
ErrorDocument 503 default
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^ https://xxxxxxxxxxx.com%{REQUEST_URI} [NS,R,L]

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.xxxxxxxxxxxx\.com [NC]
RewriteRule ^(.*)$ https://xxxxxxxxxxx.com/$1 [L,R=301]

<IfModule mod_rewrite.c>
    RewriteEngine On

    #    If you are having problems with the rewrite rules, remove the "#" from the
    #    line that begins "RewriteBase" below. You will also have to change the path
    #    of the rewrite to reflect the path to your XenForo installation.
    #RewriteBase /xenforo

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
    RewriteRule ^.*$ index.php [NC,L]
</IfModule>

# php -- BEGIN cPanel-generated handler, do not edit
# NOTE this account's php is controlled via FPM and the vhost, this is a place holder.
# Do not edit. This next line is to support the cPanel php wrapper (php_cli).
# AddType application/x-httpd-ea-php71 .php .phtml
# php -- END cPanel-generated handler, do not edit

kodları ftp de bulunan .htaccess komple silerek yapıştırın ve kayıt etmeden xxxxxxxxxxxxxxx olan yerleri web sitenizin ismine göre düzenlemeniz yeterli olacaktır.
 
Geri
Yukarı