301重定向重写的URL

时间:2012-11-06 14:45:44

标签: .htaccess url url-rewriting

我正在尝试重定向一些重写的​​URL,但是当重定向工作时,它会在重写之前包含原始参数。

e.g。重定向/used-cars.html http://www.odins.co.uk/our-cars.html

重写的URL基于以下结构:

http://www.domain.co.uk/pages/index.php?p=used-cars

然而,正在发生的事情是:

http://www.domain.co.uk/our-cars.html?p=used-cars

.htaccess文件如下:

Options -Indexes
Options +FollowSymlinks
RewriteEngine On

RewriteCond %{HTTP_HOST} ^odins.co.uk [NC]
RewriteRule ^(.*)$ http://www.odins.co.uk/$1 [L,R=301]
RewriteRule ^([^/]*)\.html$ /pages/index.php?p=$1 [L]
RewriteRule ^news/([^/]*)$ /pages/news/index.php?n=$1 [L]

Redirect /used-cars.html http://www.domain.co.uk/our-cars.html

任何帮助都将不胜感激。

0 个答案:

没有答案