我一直在使用 htaccess 来删除重写某些 URL,但是我现在正在寻找一些更复杂的东西。
我们的网站博客(WordPress)曾经有这样的链接:
/blog/postname/1387
然而,在重做网站后,我们的链接现在只是
/邮政名
是否可以从 /blog/postname/1387 重定向任何用途,并通过 htaccess 删除最后的博客和号码,使其仅包含帖子名?目前我有:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule ^blog/(.*)/.*$ $1/
</IfModule>
很想听听任何提示或提示,因为这实际上并没有做任何重定向,我做错了什么?