我昨天建了个人博客,我想把连接的路径重新设置下,我想到用Rewrite但是找的规则不能用,想请大家帮写一个
现在栏目的连接是:http://www.456006.net/category/share 我想把category去年,变成 :http://www.456006.net/share
以下是自带的规则# 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