Forum Moderators: phranque
# In httpd.conf set the following option
# AllowOverride All
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
#Options +FollowSymlinks
RewriteCond %{HTTP_HOST} ^stats\.tehclan\.net$ [NC]
RewriteRule ^(.*)$ http://tehclan.net/bf2statistics/$1 [L,R]
RewriteCond %{HTTP_HOST} ^bf2s\.tehclan\.net$ [NC]
RewriteRule ^(.*)$ http://tehclan.net/bf2sclone/$1 [L,R]
RewriteCond %{HTTP_HOST} ^forum\.tehclan\.net$ [NC]
RewriteRule ^(.*)$ http://tehclan.net/forum/$1 [L,R]
RewriteCond %{HTTP_HOST} ^rebz01\.tehclan\.net$ [NC]
RewriteRule ^(.*)$ http://tehclan.net/rebz01/$1 [L,R]
</IfModule>
# AllowOverride All
#
#Options +FollowSymlinks
#
RewriteEngine on
RewriteBase /
#
RewriteCond %{HTTP_HOST} ^stats\.tehclan\.net [NC]
RewriteRule ^(.*)$ /bf2statistics/$1 [L]
#
RewriteCond %{HTTP_HOST} ^bf2s\.tehclan\.net [NC]
RewriteRule ^(.*)$ /bf2sclone/$1 [L]
#
RewriteCond %{HTTP_HOST} ^(forum|rebz01)\.tehclan\.net [NC]
RewriteRule ^(.*)$ /%1/$1 [L]
#Options +FollowSymlinks
#
RewriteEngine on
RewriteBase /
#
RewriteCond $1 !^bf2statistics/
RewriteCond %{HTTP_HOST} ^stats\.tehclan\.net [NC]
RewriteRule ^(.*)$ /bf2statistics/$1 [L]
#
RewriteCond $1 !^bf2sclone/
RewriteCond %{HTTP_HOST} ^bf2s\.tehclan\.net [NC]
RewriteRule ^(.*)$ /bf2sclone/$1 [L]
#
RewriteCond $1 !^(forum|rebz01)/
RewriteCond %{HTTP_HOST} ^(forum|rebz01)\.tehclan\.net [NC]
RewriteRule ^(.*)$ /%1/$1 [L]