rewriteRules

pull/2/head
Gnieark 9 years ago
parent 668c5b2479
commit bd86b9cc65

@ -1,3 +1,15 @@
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]

Loading…
Cancel
Save