Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のURLを持っています:
http://mysite.com/dir/someone-else%E2%80%99s-black-tie/
htaccessでそれを次の場所にリダイレクトしたい:
http://mysite.com/dir/someone-elses-black-tie/
どうすればそれを達成できますか?
ありがとう!
RewriteEngine On RewriteCond %{HTTP_HOST}:%{SERVER_PORT}s ^(.*):(443(s)|\d+s)$ RewriteRule ^/?(dir/someone-else).+(s-black-tie/?)$ http%3://%1/$1$2 [R=301,L]