0

我必须将一些链接重定向到标准链接,例如:

/lang/news1
/lang/news2
/lang/news3 to /lang/news.html

Now i don't want to set redirect 301 directly on htaccess (i have 500 links) 
and i read the possibility to create a rewritemap and a rewrite rule for the map, but how?

我在所有互联网上阅读,但我不明白如何做到这一点。

建议?

加布里埃尔

4

1 回答 1

0

我建议将这样的内容放入您的 .htaccess 文件中:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /lang/
# redirect everything looks like `news[digits]` to `news.html`
# this will NOT change the request url
RewriteRule ^news([0-9]{1,})$ news.html [L]
</IfModule>

您的主机服务器当然必须支持 mod_rewrite。

于 2013-07-26T09:06:00.560 回答