2016-06-06 17:41:02 -06:00
|
|
|
RewriteEngine On # Turn on the rewriting engine
|
|
|
|
|
|
|
|
RewriteRule ^view/([0-9]+)/([0-9]+)/?$ index.php?dict=$1&word=$2 [NC,L] # Handle word ids.
|
|
|
|
|
|
|
|
RewriteRule ^([0-9]+)/([0-9]+)/?$ index.php?dict=$1&word=$2 [NC,L] # Handle word ids.
|
|
|
|
|
|
|
|
RewriteRule ^view/([0-9]+)/?$ index.php?dict=$1 [NC,L] # Handle dictionary ids.
|
|
|
|
|
2016-06-16 13:41:14 -06:00
|
|
|
RewriteRule ^([0-9]+)/?$ index.php?dict=$1 [NC,L] # Handle dictionary ids.
|
|
|
|
|
|
|
|
RewriteRule ^issues/?$ https://github.com/Alamantus/DictionaryBuilder/issues [R=301,L] # Shorten issues url.
|
|
|
|
|
|
|
|
RewriteRule ^updates/?$ https://github.com/Alamantus/DictionaryBuilder/releases [R=301,L] # Shorten updates url.
|