我有一个奇怪的问题。我有一个 .htaccess 文件,只有当我使这些底部的两个条件/重写不同的文件夹时,它才会起作用。我希望 products.php 和 specs.php 页面都显示:www.example.com/products/ 然后是它们各自的漂亮 URL 的 slug。就目前而言,如果我有不同的文件夹名称,我只能让它(有点)工作。Products.php 显示一个类别中许多产品的简要描述(在域之后它将显示 /candy)。规格页面仅显示一种产品(在域之后显示产品线和产品名称糖果/甜心)。任何帮助将不胜感激!
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
#products.php pages
RewriteCond %{THE_REQUEST} html/products.php
RewriteCond %{QUERY_STRING} ^slug=(.*)$
RewriteRule ^html/products\.php$ http://www.example.com/products/%1? [R=301,L]
RewriteRule ^products/(.*)$ /html/products.php?slug=$1 [L]
#specs.php pages
#RewriteCond %{THE_REQUEST} html/specs.php
#RewriteCond %{QUERY_STRING} ^prodslug=(.*)$
#RewriteRule ^html/specspage\.php$ http://www.example.com/specs/%1? [R=301,L]
#RewriteRule ^specs/(.*)$ /html/specs.php?prodslug=$1 [L]