You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
491 B
ApacheConf

php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
#rewriterules
#urlrewritting
RewriteEngine On
RewriteBase /
RewriteRule ^v/([A-Za-z0-9]*)-([a-Z]{2})$ index.php?arena=$1&lang=$2 [L]
RewriteRule ^v/([A-Za-z0-9]*)$ index.php?arena=$1 [L]
RewriteRule ^v/-([a-Z]{2})$ index.php?lang=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9]*)$ index.php?page=$1 [L]
RewriteRule ^index.php$ index.php/ [L]