
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^.*detail/(.*)/$ corel/index\.php?cat=$1&%{QUERY_STRING} [L]
RewriteRule ^(\d+)-.*.jsp$ corel/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^.*(article[a-z]+map\.xml)$  docs/$1 [L]
RewriteRule ^.*(sitemap\.xml)$  docs/$1 [L]

RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress