0

我有一个奇怪的问题。我没有对我的商店进行任何更改或任何操作,但突然间,我的客户被卡在结帐的结算步骤中。它只是返回“所有 '*' 都需要填写”。

知道我如何解决/解决这个问题吗?我的 URL 是canopysound(它是丹麦语,但我想您无论如何都可以导航到结帐)。

另一件事是,在我的后端配置中,我无法保存所做的更改。我尝试关闭客人结帐和一页结帐。当我按“保存”时,它们保持不变(都打开)。我不知道这是否相关:/

编辑:关于最后提到的问题,我做了更多的搜索。它可能与我的 .htaccess 配置有关。我可能在那里毁了一些东西。我的 .htaccesss 看起来像这样:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]

RewriteRule ^(.*)/$ /$1 [L,R=301]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

RewriteCond %{SCRIPT_FILENAME}/ -d
  RewriteCond %{SCRIPT_FILENAME}.html !-f
  RewriteRule [^/]$ %{REQUEST_URI}/ [R=301,L]

  RewriteCond %{ENV:REDIRECT_STATUS} ^$
  RewriteRule ^(.+)\.html$ /$1 [R=301,L]
</IfModule>

<ifModule mod_gzip.c>
  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.*
</ifModule>

<IfModule mod_expires.c>
ExpiresActive On
############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
ExpiresDefault "access plus 1 year"
</FilesMatch>
</IfModule>
4

0 回答 0