wmaraci reklam

Sslden Sonra Tüm Linkler index.php?_route_ Oldu

23 Mesajlar 3.214 Okunma
pst.net
wmaraci reklam

Akhmerrah Akhmerrah WM Aracı Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 28 / E
  • Meslek Developer
  • Konum İstanbul Avrupa
  • Ad Soyad M** Ö**
  • Mesajlar 288
  • Beğeniler 19 / 66
  • Ticaret 2, (%100)
Merhaba arkadaşlar google yeni güncellemesiyle ssl olan siteleri güvenli ibaresi veriyor. Bende ssl kurmaya karar verdim daha önceden defalarca yaptım ama .htaccess ssl yönlendirmeden sonra tüm linklerin başında
index.php?_route_ diye birşey eklendi yardımcı olabilecek varmıdır. Htaccess kodumu aşağıda paylaşıyorum. Yardımlarınız bekliyorum abiler kardeşler Ek olarak paladin seo eklentisini kullanıyorum buradanda birşey olabilir fakat ben bilmiyorum. Sorun .htaccesten sanırım

RewriteBase /
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

Bu kısımdan sorun var ama en ufak bir düzenlemede 500 hatası alıyorum
 

 

wmaraci
reklam

AdonisBG AdonisBG Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 03.01.2016
  • Yaş/Cinsiyet 40 / E
  • Meslek Bilgisayar Programcısı
  • Konum Bulgaristan
  • Ad Soyad C** Ç**
  • Mesajlar 464
  • Beğeniler 18 / 218
  • Ticaret 25, (%100)
o kısmı silip bu sekilde ekleyiniz.

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

sitenizide SSL e yonlendirmek icin egerki configdeki ayarlamaları yaptıysanız.

bu kodun ustune

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.domain.com/ $1 [L,R=301]

RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.domain.com/ $1 [L,R=301]

bu koduda ekleyerek siteyi Tamamen SSL i actirabilirsiniz. domain yazan yerlere kendi domaininizi ekleyiniz.
Akhmerrah

kişi bu mesajı beğendi.

Akhmerrah Akhmerrah WM Aracı Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 28 / E
  • Meslek Developer
  • Konum İstanbul Avrupa
  • Ad Soyad M** Ö**
  • Mesajlar 288
  • Beğeniler 19 / 66
  • Ticaret 2, (%100)
AdonisBG olmadı hocam ya hala index.php route kısmı gözüküyor tam olarak .htaccess atıyorum

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing
Options -Indexes

# Prevent Direct Access to files

Order deny,allow
Deny from all


# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]



mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*



SetOutputFilter DEFLATE
# Don't compress
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
#Dealing with proxy servers

Header append Vary User-Agent



RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.casuskamera\.tv.tr$
RewriteRule ^(.*)$ https://casuskamera.tv.tr/ $1 [L,R=301]

RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^ https://casuskamera.tv.tr %{REQUEST_URI} [L,R]


### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200

# 7. disable open_basedir limitations
# php_admin_value open_basedir none
 

 

NumanABi NumanABi --> numanozdemir.com <-- Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 33 / E
  • Meslek -
  • Konum Kırıkkale
  • Ad Soyad N** Ö**
  • Mesajlar 1419
  • Beğeniler 380 / 442
  • Ticaret 21, (%95)
Burası sorun çıkarıyor.
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
Bunu,
RewriteRule ^([^?]*) index.php?=$1 [L,QSA]
olarak düzenleyip dener misin?
 

 

wmaraci
Mersin evden eve nakliyat

Akhmerrah Akhmerrah WM Aracı Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 28 / E
  • Meslek Developer
  • Konum İstanbul Avrupa
  • Ad Soyad M** Ö**
  • Mesajlar 288
  • Beğeniler 19 / 66
  • Ticaret 2, (%100)
NumanABi hocam onu denemiştim bu sefer linklere index.php ekliyor onuda istemiyorum siteismi.com/urun-adi sadece istediğim o satırı sildiğimde ise 500 hatası alıyorum
 

 

JumperTech JumperTech Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 02.07.2016
  • Yaş/Cinsiyet 38 / E
  • Meslek Webmaster
  • Konum İstanbul Avrupa
  • Ad Soyad B** O**
  • Mesajlar 1705
  • Beğeniler 820 / 523
  • Ticaret 19, (%100)
RewriteRule ^([^?]*) $1 [L,QSA]
 

 

Akhmerrah Akhmerrah WM Aracı Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 28 / E
  • Meslek Developer
  • Konum İstanbul Avrupa
  • Ad Soyad M** Ö**
  • Mesajlar 288
  • Beğeniler 19 / 66
  • Ticaret 2, (%100)
JumperTech 404 Hatası hocam
 

 

JumperTech JumperTech Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 02.07.2016
  • Yaş/Cinsiyet 38 / E
  • Meslek Webmaster
  • Konum İstanbul Avrupa
  • Ad Soyad B** O**
  • Mesajlar 1705
  • Beğeniler 820 / 523
  • Ticaret 19, (%100)
O zaman scriptiniz bozulmuş, tekrardan sitenizi kurun orjinal script ile.
 

 

Akhmerrah Akhmerrah WM Aracı Kullanıcı
  • Üyelik 02.09.2016
  • Yaş/Cinsiyet 28 / E
  • Meslek Developer
  • Konum İstanbul Avrupa
  • Ad Soyad M** Ö**
  • Mesajlar 288
  • Beğeniler 19 / 66
  • Ticaret 2, (%100)
Script opencart sadece ssl kurunca öyle link ekliyor başka bir sorununu görmedim şimdiye kadar
 

 

AdonisBG AdonisBG Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 03.01.2016
  • Yaş/Cinsiyet 40 / E
  • Meslek Bilgisayar Programcısı
  • Konum Bulgaristan
  • Ad Soyad C** Ç**
  • Mesajlar 464
  • Beğeniler 18 / 218
  • Ticaret 25, (%100)
admin paneli sifrenizi iletirmisiniz ozelden.
 

 

wmaraci
Konuyu toplam 2 kişi okuyor. (0 kullanıcı ve 2 misafir)
Site Ayarları
  • Tema Seçeneği
  • Site Sesleri
  • Bildirimler
  • Özel Mesaj Al