Infection
RewriteCond %{REQUEST_URI} ^/resort.* [OR]
RewriteCond %{REQUEST_URI} ^/countr.* [OR]
RewriteCond %{REQUEST_URI} ^/narration.*
RewriteRule ^/resort.+id\=([0-9]+)$ index.php?Resort=$1
а так?
возможно нужен еще один RewriteCond
RewriteCond %{QUERY_STRING} id=([0-9]+)
тогда тут
RewriteRule ^/resort.*$ index.php?Resort=%1
RewriteCond %{REQUEST_URI} ^/resort.* [OR]
RewriteCond %{REQUEST_URI} ^/countr.* [OR]
RewriteCond %{REQUEST_URI} ^/narration.*
RewriteRule ^/resort.+id\=([0-9]+)$ index.php?Resort=$1
а так?
возможно нужен еще один RewriteCond
RewriteCond %{QUERY_STRING} id=([0-9]+)
тогда тут
RewriteRule ^/resort.*$ index.php?Resort=%1