15 lines
497 B
ApacheConf
15 lines
497 B
ApacheConf
# redirect donate.html
|
|
redirect 302 /donate.html https://app.filebot.net/donate.php
|
|
|
|
# redirect filebot.sourceforge.net to www.filebot.net
|
|
RewriteEngine on
|
|
|
|
RewriteCond %{HTTP_HOST} =filebot.net [NC]
|
|
RewriteRule ^scripts\/(.*)$ https://github.com/filebot/scripts/blob/devel/$1 [R=301,L]
|
|
|
|
RewriteCond %{HTTP_HOST} =filebot.net [NC]
|
|
RewriteRule ^(.*)$ http://www.filebot.net/$1 [R=301,L]
|
|
|
|
RewriteCond %{HTTP_HOST} =filebot.sourceforge.net [NC]
|
|
RewriteRule ^(.*)$ http://www.filebot.net/$1 [R=301,L]
|