我需要配置public class LoginActivity extends AppCompatActivity {
private TextView ForgetPass;
private Button Login,Signup;
private EditText UserName,Password;
onCreate
{
Login = (Button)findViewById(R.id.login);
Signup = (Button)findViewById(R.id.signup);
ForgetPass = (TextView)findViewById(R.id.forgetPass);
UserName = (EditText)findViewById(R.id.userName);
Password = (EditText)findViewById(R.id.password);
helper = new DatabaseHelper(this);
Signup.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent1 = new Intent(LoginActivity.this,SignUpActivity.class);
startActivity(intent1);
}
});
}
}
文件以使用.htaccess
启用HTTP响应压缩。我可以让基本压缩工作。
但是,我希望对所有MIME类型禁用压缩,除以下内容:
我知道我可以使用诸如mod_gzip
之类的语句来包含或排除或排除某些mime类型,但我似乎无法正确使用它。我应该如何配置我的mod_gzip_item_exclude mime ^regex$
文件?
答案 0 :(得分:1)
看看是否有效:
^(?:(?:(?:text|message)\/\*)|(?:application\/(?:x-javascript|json|(?:atom|xaml)\+xml)))$