重写规则或重定向使用百分比符号和连字符

时间:2015-07-24 15:50:03

标签: wordpress .htaccess mod-rewrite redirect

我试图在各种论坛中查看,但无法找到任何对我有用的内容。我试图在一组有空格的网址上重定向或强制重写规则OR'%20'并在尝试解决重定向时基本上中断。旧网站是新网站的statis网站,这是Wordpress,这无关紧要。

这就是我所拥有的:

ScrollView scrollView = (ScrollView)findViewById(R.id.scrollview);
EditText editText = (EditText)findViewById(R.id.editText);
int[] coordinates = new int[2];
editText.getLocationOnScreen(coordinates);
scrollView.smoothScrollTo(coordinates[0],coordinates[1]);

哪个不起作用,最终回到根位置。或者,我尝试做一个RewriteRule,它在下面没有任何区别:

Redirect 301 http://www.exampledomain.com/pdf/PA%20article%20-%20Cross%20Selling.pdf http://www.exampledomain.com/wp-content/uploads/2014/12/PA_article_-_Cross_Selling.pdf

任何其他人都不能看这个并告诉我做错了什么

1 个答案:

答案 0 :(得分:0)

以下RewriteRule使用\s来匹配任何空格字符:

RewriteRule ^pdf/PA\sarticle\s-\sCross\sSelling.pdf$ wp-content/uploads/2014/12/PA_article_-_Cross_Selling.pdf