我有一个.htaccess文件,该文件正在将index.php?cPath
文件名重写为带有html的标准版本。
我已将站点转移到新服务器上,并且试图使链接再次正常工作,但是问题是,每次我访问其中一个链接时,他们都会正确地重写它,但是这只是带回了我到索引主页。
这是我的规则。
Options +FollowSymLinks
Options +ExecCGI
RewriteEngine On
RewriteBase /main_web/kitchensonclearance/
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
有什么想法吗?