私はすべての 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/
リダイレクトの両方を処理するには?
末尾にスラッシュが付いている必要があると思います。