mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-03-25 12:50:45 +01:00
9 lines
No EOL
442 B
ApacheConf
9 lines
No EOL
442 B
ApacheConf
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.
|
|
|
|
RewriteRule ^([0-9]+)/?$ index.php?dict=$1 [NC,L] # Handle dictionary ids. |