Apache: mod_rewrite, .htaccess |
Options +Indexes
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteRule ^.htaccess$ - [F]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)(russian|english|german)/docs/(.+)/(.*)$ http://domain.ru/otladka/contents.php?language=$2path=$3&print=$4
Naamaah: 1. ?
2. index?!
3. mod_rewrite ...
http://domain.ru/docs/russian/documents/consult/
. .
Options +Indexes
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^docs/(russian|english|german)/(.+)/(.*)$ getcontents.php?language=$1&path=$2&print=$3