0

当 url “.php” 或 “.html” 或 “?” 时如何使用 .htaccess 重定向页面 或“=”?

Examples
http://www.domain.ltd/index.php     # error, execute redirect to http://www.domain.ltd/ban/
http://www.domain.ltd/index/?id=foo # error, execute redirect to http://www.domain.ltd/ban/
http://www.domain.ltd/index.html    # error, execute redirect to http://www.domain.ltd/ban/

非常感谢

4

1 回答 1

0

摘自:http ://www.webconfs.com/how-to-redirect-a-webpage.php

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

显然将 domain.com 替换为您的页面。此重定向将查看任何到达 domain.com 的内容并将其转发到 www.domain.com。

一个快速的谷歌也为我制作了这个漂亮的 htaccess 生成器(但我现在不能发布它)。

于 2012-09-05T10:03:35.570 回答