重写友好的URL,不同的模式

问题描述 投票:0回答:1

我有以下重写规则

<filesMatch  "^(member)$">
    Options +FollowSymlinks
    RewriteEngine on

    RewriteRule ^/(.*)/(.*)/(.*)$  /member-profile.php?ID=$2 [L]
</filesMatch>

<filesMatch  "^(community-events)$">
    Options +FollowSymlinks
    RewriteEngine on

    RewriteRule ^/(.*)/(.*)/(.*)/(.*)$  /community-events.php?ID=$3 [L]
</filesMatch>

这显然是重写这个

mydomain.com/comunity-events/category/id/name 

到此

mydomain.com/comunity-events.php?myvariables

现在,我想要一个没有起始“文件夹”的新重定向,就像这样

mydomain.com/business-category/business-name

mydomain.com/business-profile.php?variables

在当前配置下,这是否可能,无需为每个类别名称进行重定向?

.htaccess mod-rewrite url-rewriting
1个回答
0
投票

您甚至不需要

filesMatch
指令,因为您可以匹配
RewriteRule
本身的起始部分。

您可以使用以下规则替换 .htaccess:

Options +FollowSymlinks -MultiViews
RewriteEngine On

# handle /member/...
RewriteRule ^/?(member)/(.*)/(.*)$ /member-profile.php?ID=$2 [L,QSA,NC]

# handle /community-events/...
RewriteRule ^/?(community-events)/(.*)/(.*)/(.*)$ /community-events.php?ID=$3 [L,QSA,NC]

# handle /business-category/business-name
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(.*)/(.*)$ business-profile.php?name=$2 [L,QSA]
© www.soinside.com 2019 - 2024. All rights reserved.