View Single Post
Old 03-02-2016, 03:08 PM   #57
PBCA Commish
Minors (Single A)
 
PBCA Commish's Avatar
 
Join Date: Nov 2015
Location: Montreal, Canada
Posts: 98
Contents of the .htaccess file
Code:
RewriteEngine on
RewriteOptions MaxRedirects=1

RewriteRule ^box_scores/(.*)\.html$ '/public_html/league_reports/index.php?type=e&name=$1' [L]
RewriteRule ^coaches/(.*)\.html$ '/public_html/league_reports/index.php?type=g&name=$1' [L]
RewriteRule ^game_logs/(.*)\.html$ '/public_html/league_reports/index.php?type=f&name=$1' [L]
RewriteRule ^history/(.*)\.html$ '/public_html/league_reports/index.php?type=h&name=$1' [L]
RewriteRule ^leagues/(.*)\.html$ '/public_html/league_reports/index.php?type=b&name=$1' [L]
RewriteRule ^players/(.*)\.html$ '/public_html/league_reports/index.php?type=d&name=$1' [L]
RewriteRule ^teams/(.*)\.html$ '/public_html/league_reports/index.php?type=c&name=$1' [L]
# Use PHP55 as default
AddHandler application/x-httpd-php55 .php
<IfModule mod_suphp.c>
    suPHP_ConfigPath /opt/php55/lib
</IfModule>
PBCA Commish is offline   Reply With Quote