-3

请帮助设置 .htaccess / mod_rewrite 重定向,它将:

-> 将 example.com 重定向到 example.com/forum/ 和

-> 将 example.com/any-posts.php 重定向到 example.com/forum/any-posts.php

实际上,我在一个月前创建了一个论坛,该论坛正在“example.com”上访问,但现在需要将所有内容重定向到 /forum/ 以便它像:example.com/forum/ 文件夹一样工作。

谢谢!

4

1 回答 1

1

In that case, you must rewrite the url

the .htaccess should be

RewriteEngine on
RewriteRule ^(.*)$ /forum/$1 [L]

and you get example.com to example.com/forum/

于 2013-04-01T23:49:25.077 回答