我想重定向以相同表达式结尾的不同页面,例如:
/something.php
我有以下网址:
/truc/machin/something.php
/truc/tous-56/something.php
/truc/machin/tous-56/something.php
我不希望在我的.htaccess
中有大量的行,我想通过正则表达式的通用规则来解决这个问题。
你能不能帮我找到合适的表达方式,以便重新定位.htaccess
中的所有内容?
答案 0 :(得分:0)
这应该适合你:
RewriteEngine On
RewriteRule ^(.*)/something.php$ /somethingelse.php [R=301,L]
如果something.php
位于网址中,它会将somethingelse.php
重定向到something.php
。