一年前我安装了 Magento 1.7.0.2 。安装 SUPEE-6788 补丁后,我遇到了几个问题:
点击任何页面上的任何链接后我都有一个空白页面,当我从浏览器打开控制台时,我收到此错误:import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.RelativeLayout;
public class WebViewActivity extends AppCompatActivity {
WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_web_view);
RelativeLayout parent = (RelativeLayout) findViewById(R.id.containerView);
webView = new WebView(this);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("http://www.google.com/");
parent.addView(webView, 0);
}
}
。
当我在GET http://titasos.com/Shop/high-tech/computer-and-console/computer.html net::ERR_CONNECTION_RESET
上将Use Web Server Rewrites
更改为no
时,错误消失,但在重新将其放回System>Configuration>Web>Search Engines Optimization
之后,它会回来。
任何解决方案?
答案 0 :(得分:0)
我找到了解决方案,只需在Magento根上打开.htaccess
并对RewriteRule .* index.php [L]
行进行评论:## RewriteRule .* index.php [L]