特殊网址格式的重写规则

时间:2018-08-31 18:09:52

标签: nginx url-rewriting

最近我的服务器被未知的攻击者击中,并且在日志文件中我发现了许多与这些链接:

@Configuration
public class SpringJDBCAnnotation {

@Autowired
static JdbcTemplate template;

@Autowired
static DataSource dataSource;

@Bean
DataSource dataSource() {
    DriverManagerDataSource ds = new DriverManagerDataSource();
    ds.setDriverClassName("com.mysql.jdbc.Driver");
    ds.setUrl("jdbc:mysql://localhost:3306/organization");
    ds.setUsername("root");
    ds.setPassword("test");
    return ds;
}

@Bean
JdbcTemplate template() {
    JdbcTemplate template = new JdbcTemplate();
    template.setDataSource(dataSource);
    return template;
}

public static void main(String[] args) {

    String sql = "insert into employee values(1, 'Tom', 'Cruise')";
    int result = template.update(sql);
    System.out.println("# of records inserted : " + result);


}

}

我知道您可以使用cloudflare重定向某些模式,但是如何在nginx中实现呢?

如果GET网址的格式为/?_ =,我将重定向,并将重定向到google。

请告知。谢谢你。

0 个答案:

没有答案