我有一个网址www.example.com/page/abcderf
=〉abcderf
〈=是动态的,它永远不会是相同的值。
我想使用.htacess
从以下位置重定向:
www.example.com/page/abcderf
到
www.example.com/page/
怎么办?
我的尝试:
RewriteCond %{REQUEST_URI} (\page\.[a-zA-Z0-9])$
RewriteRule ^(.+)/$ http://www.example.com/page/ [R=301,L]
1条答案
按热度按时间yeotifhr1#
你不需要任何条件,只要一行就行了:
NC =无案例L =最后一个(之后不运行任何内容)R=301 = 301重定向