我们正在运行opencart购物网站。我无法在https上解决seo url问题。
SEO URL在HTTP URL上可以正常工作。在HTTPS网址上找不到网址。
EG-
http:www.example.com/test [Works]
https:www.example.com/test [404 error page]
当我从https中删除“ s”并按Enter时,将显示产品页面,但带有以下网址
https:www.example.com/index.php?_route_=test
我们一直在与服务器团队保持联系,但是他们无法找到确切的问题。
我们正在使用AWS服务器。美分。
.htaccess文件
Options +FollowSymlinks
Options -Indexes
# Prevent Direct Access to files
<FilesMatch "(?i)((\.tpl|.twig|\.ini|\.log|(?<!robots)\.txt))">
Require all denied
</FilesMatch>
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
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)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
## END Default opencart htaccess code