我想对包含百分比符号的单个URL进行301重定向,但无法弄清楚该怎么做
旧网址:http://www.dummydomain.com/subfolder1/subfolder2/checklflugbl%E4tter.pdf
新网址:https://www.dummydomain.com
因此,旧的(不存在的)PDF应该直接重定向到首页。
我使用了以下代码,该代码对所有其他PDF都适用,但不适用于URL中带有%符号的代码。
@Mock
private class object;
@Test
public void testCalculator() {
given(object.calculator(2,3)).willreturn(1);
// remove the following line as when validate method will be called it will itself return true assuming it has simple check for positive value a and not calling any other method inside it
given(class.validate(2)).willReturn(true);
//asserts here //
}
URL中包含%的PDF文件的解决方案是什么?