需要帮助重定向任何网址,例如:
http://www.example.com/ *.html
至:
http://www.example.com/forums/ *.html
我正在使用 Litespeed。
谢谢
需要帮助重定向任何网址,例如:
http://www.example.com/ *.html
至:
http://www.example.com/forums/ *.html
我正在使用 Litespeed。
谢谢
我在我的 lite speed 服务器上使用它:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^(.*\.html)$
RewriteRule (.*) http://www.example.com/forums/$1? [R=301,L]
以及检查它是否有效,你可以使用这个网站,当我弄清楚它时它对我有很大帮助:
http://htaccess.madewithlove.be/
一般来说,您似乎可以在 litespeed 中使用与 apache 中相同的命令
干杯,
威廉