这个htaccess规则的第一部分是工作,但第二部分不起作用

时间:2018-05-07 04:36:01

标签: php .htaccess url-rewriting

此htaccess规则的第一部分正在运行,但第二部分无效。我试图在一个网站上创建两个博客。因此,当viewpost.php从我的数据库中的一个表中收集数据时,ss-viewpost.php会从完全不同的表中收集数据。 RewriteRule使标题段落位于URL的末尾。

我该如何解决这个问题?

RewriteEngine On
RewriteBase /tms/

RewriteRule ^c-(.*)$ catpost.php?id=$1 [L]
RewriteRule ^a-(.*)-(.*)$ archives.php?month=$1&year=$2 [L]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteRule ^(.*)$ viewpost.php?id=$1 [QSA,L]


RewriteRule ^c-(.*)$ ss-catpost.php?id=$2 [L]
RewriteRule ^a-(.*)-(.*)$ archives.php?month=$1&year=$2 [L]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteRule ^(.*)$ ss-viewpost.php?id=$2 [QSA,L]

0 个答案:

没有答案