2019-11-03 18:23:06 +00:00
|
|
|
Options +FollowSymlinks
|
|
|
|
RewriteEngine on
|
|
|
|
|
|
|
|
#RewriteCond %{SERVER_PORT} 80
|
|
|
|
|
|
|
|
RewriteCond %{REQUEST_URI} !index.php
|
|
|
|
#RewriteRule ^install$ custom/__private/install/install.php [L]
|
|
|
|
|
|
|
|
RewriteRule ^([a-z\-]+)-([0-9\.]+)$ index.php?page=$1&reference=$2 [L]
|
2020-11-30 15:52:59 +00:00
|
|
|
RewriteCond %{QUERY_STRING} ^([a-zA-Z0-9\-_=&;]+)$
|
|
|
|
RewriteRule ^([a-z\-]+)$ index.php?page=$1&%1 [L]
|
2019-11-03 18:23:06 +00:00
|
|
|
RewriteRule ^([a-z\-]+)$ index.php?page=$1 [L]
|
2020-11-30 15:52:59 +00:00
|
|
|
RewriteRule /.? proxy.php [L]
|