在特定页面后添加尾部斜杠时遇到问题

时间:2014-08-30 10:55:11

标签: php .htaccess mod-rewrite redirect

我想添加尾随斜杠" /"对于特定的网址,如约,联系,下载等我已经尝试了这么多的解决方案,但没有一个适合我。我用.htaccess隐藏.php扩展名。这是我目前的htaccess代码

RewriteEngine on


# RewriteCond %{HTTP:Accept-Language} ^fr [NC]
# RewriteRule ^$ /co-fr/ [L,R=301]

<IfModule mod_rewrite.c>
RewriteRule ^products/(\d+)/([\d\w-\s]*)/([\d\w-\s]*)/([\d\w-\s]*)/?$ product_detail.php?id=$1&category=$3&parent_category=$2 [L,QSA]
</IfModule>

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php



ErrorDocument 404 /404.html

0 个答案:

没有答案