我正在重写所有 URL 并简写其中一些:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(([^\.]+))\.pl [NC]
RewriteRule ^(.*)$ http://%1.pl%{REQUEST_URI} [R=301,L]
RewriteRule ^test$ test-page.php [R=301,L]
所以
example.pl/test
重定向到example.pl/test-page.php
但
example.pl/test/
重定向到example.pl/
虽然它应该:
example.pl/test/
重定向到example.pl/test-page.php
如何同时处理/url
和/url/
重定向?
我认为它必须带有斜杠。