重写joomla .htaccess中的规则不起作用

时间:2016-08-25 10:23:08

标签: php .htaccess mod-rewrite joomla

我已在joomla .htaccess中添加此行以删除部分网址。

原始网址示例 - http://odishayellowpages.in/item/scientific-suppliers

必填网址示例 - http://odishayellowpages.in/scientific-suppliers

我已经使用了这个重写规则 - 但它没有任何区别。

# Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
RewriteRule ^item/(.*)$ $1 [R=301,L]
## End - Custom redirects

1 个答案:

答案 0 :(得分:3)

您可以在RewriteEngine On行:

下方使用此重定向规则
RewriteRule ^item/(.*)$ /$1 [R=301,L,NC,NE]

您需要在目标网址的开头使用/,以避免将其附加到当前文件系统路径。