# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^.*[-/]u(\d+)/?$ permalinkl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]u(\d+)[-/].*$ permalinkl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^u(\d+)[-/].*$ permalinkl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]u(\d+)-.*$ permalinkl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^u(\d+)-.*$ permalinkl/index\.php?id=$1&%{QUERY_STRING} [L]
RewriteRule ^w(\d+)[-/].*[-/]u(\d+)-.*$ permalinkl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^w(\d+)[-/]u(\d+)[-/].*$ permalinkl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^u(\d+)[-/].*[-/]w(\d+)[-/].*$ permalinkl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^u(\d+)[-/]w(\d+)[-/].*$ permalinkl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]u(\d+)[-/]w(\d+)[-/].*$ permalinkl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]u(\d+)[-/].*[-/]w(\d+)[-/].*$ permalinkl/index\.php?id=$2-$1&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]w(\d+)[-/].*[-/]u(\d+)[-/].*$ permalinkl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^.*[-/]w(\d+)[-/]u(\d+)[-/].*$ permalinkl/index\.php?id=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress