此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]