htaccess重定向与空白,引用和é

时间:2012-04-29 20:23:22

标签: .htaccess redirect space quote diacritics

我有以下地址: le%20coin%20de%20l’auteur%20-%20biographie%20de%20Cathérine%20Boullery.html 其中包括空格,引号和带重音的字母。

我想使用类似的东西: redirect 301 /this-above-url http://telecharger-ebook-roman-fantasy-aila-pdf-fr.fr//le-coin-de-l-auteur-biographie-de-catherine-boullery.html

我有几个页面,这些奇怪的字符可以重定向,没有使用htaccess的经验,但是我看到了,试着理解并复制......

1 个答案:

答案 0 :(得分:1)

您应该在url-path周围使用引号,并使用非编码字符。类似于以下内容

redirect 301 "le coin de l’auteur - biographie de Cathérine Boullery.html" http://telecharger-ebook-roman-fantasy-aila-pdf-fr.fr//le-coin-de-l-auteur-biographie-de-catherine-boullery.html

然而,这在我的测试服务器上无效。

使用mod_rewrite的工作是什么。

RewriteEngine On
RewriteBase /

RewriteRule "^le coin de l’auteur - biographie de Cathérine Boullery.html$" http://telecharger-ebook-roman-fantasy-aila-pdf-fr.fr//le-coin-de-l-auteur-biographie-de-catherine-boullery.html [R=302,L]