我在RHEL 6.9中使用Apache 2.4.9。
如何将请求从Inout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (Inout_Main_Scan == 1){
Inout_Main_Scan = 2;
RemainAuditAsseetInfoTask RTask = new
RemainAuditAsseetInfoTask();
RTask.setContextandActivity(mContext,Main_Activity.this,
AreaName.getText().toString());
RTask.execute();
AreaName.setText("");
btn_Scan.setVisibility(View.GONE);
Inout.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
Toast.makeText(mContext,"Area Scan Ended",Toast.LENGTH_SHORT).show();
}else {
Toast.makeText(mContext,"Area Scan Starts with Long Click",Toast.LENGTH_SHORT).show();
}
}
});
重定向到example.com
?当我打开example.com/xyz
时,它应该重定向到example.com
我怎么能这样做?我是否需要在example.com/xyz
或任何其他文件中进行更改?
或者httpd.conf
可以吗?