标签: apache .htaccess redirect
我想将一个URL(http://example.com/some-url)重定向到另一个包含第一个URL (http://example.com/some-url/something-else)
我尝试过
RewriteRule ^/some-url$ http://example.com/some-url/something-else [L,R=301]
但是它不起作用。使用经典的重定向301会创建无限循环。
我该如何实现?