2013-04-01 52 views
-3

請設立的.htaccess/mod_rewrite的重定向,這將有助於:的.htaccess重定向到一個子文件夾

- >重定向的example.com example.com/forum/和

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

實際上,我在一個月前創建了一個論壇,它正在'example.com'訪問,但現在需要將所有內容重定向到/ forum /這樣它的工作原理就像:example.com/forum/文件夾。

謝謝!

回答

1

在這種情況下,你必須重寫URL

中的.htaccess應該

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

,你會得到example.com到example.com/forum/

+0

感謝扎克但它會也適用於: example.com/any-posts.php example.com/forum/any-posts.php – user2233767

+0

適用於所有應用程序.... example.com/any-posts.php to example.com/forum /any-posts.php example.com/anything ... to example.com /論壇/任何東西... –

+0

檢查這可能可以幫助你http://stackoverflow.com/questions/15723942/rewriting-an-apache-redirect-rule/15724022#15724022 – ncm

相關問題