.htaccess将某些内容重定向到something.html

时间:2012-01-26 18:24:07

标签: html apache .htaccess redirect

如何推广

http://www.mysite.com/something 

http://www.mysite.com/something.html

并且

http://www.mysite.com/#something 

http://www.mysite.com/something.html

感谢。

1 个答案:

答案 0 :(得分:0)

对于您可以使用的第一个,

RewriteEngine On
RewriteRule ^something((/)?)$ something.html [nc]

或者更常见的是,如果您希望http://mysite.com/X转到X.html

RewriteEngine On
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule ^([^.]+)((/)?)$ $1.html [nc]
无法使用重写规则重定向

http://www.mysite.com/#something#之后的所有内容都不会传递给服务器。您需要使用JavaScript来重定向这些链接。