0

我一直在使用 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>

很想听听任何提示或提示,因为这实际上并没有做任何重定向,我做错了什么?

4

1 回答 1

1

让我们做一点清理工作:

<IfModule mod_rewrite.c>
#Turn on the RewriteEngine
RewriteEngine On

#Rewrites are all relative to /
RewriteBase /

#Explicit - If the request is for index.php, do nothing.
RewriteRule ^index\.php$ - [L]

#Conditional – Unless the file or directory specifically exists,
#If the request is for the old style blog URI, redirect to new style and stop.
#Otherwise, redirect to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^blog/(.*)/.*$ $1/ [R=301,L,QSA]
RewriteRule . /index.php [L]
</IfModule>
于 2013-05-24T16:11:04.730 回答