A to sis psal sam, nebo ti to vytvoril nejaky plugin?
Using Permalinks « WordPress Codex
http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29
The following permalink rewrite code should be included in your .htaccess file (since WordPress 3.0):
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress