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.
ルート レベルの .htaccess ファイルで、この 301 リダイレクト コードを試したところ、動作しました:-
redirect 301 /en/about/product.html http://mydomain.com/shop?
しかし、その文を複製しようとすると、他のページでは常にサーバーエラー500で終わります。
実際には、.htaccess に 10 個のリダイレクト ルールなどを含めるにはどうすればよいでしょうか。
これを試して
RewriteEngine On RewriteRule ^/en/about/product\.html?(.*)$ http://mydomain.com/shop/?$1 [R=301,L,S=1] #other page RewriteRule ^/en/about/product1\.html?(.*)$ http://mydomain.com/shop1/?$1 [R=301,L]