我已在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
答案 0 :(得分:3)
您可以在RewriteEngine On
行:
RewriteRule ^item/(.*)$ /$1 [R=301,L,NC,NE]
您需要在目标网址的开头使用/
,以避免将其附加到当前文件系统路径。