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 代码,但对许多解决方案都没有任何运气。
基本上我需要重定向这个:
/example/my-stuff/
至:
/example/home/
但我不希望重定向除 /my-stuff/ 之外的任何其他页面。例如。这些页面不应被重定向并保持不变。
/example/my-stuff/a-page /example/my-stuff/anything
提前谢谢各位!:)
在文档根目录的 htaccess 文件中,您可以添加以下任一内容:
RedirectMatch 301 ^/example/my-stuff/$ /example/home/
或者您可以使用 mod_rewrite 代替:
RewriteEngine On RewriteRule ^example/my-stuff/$ /example/home/ [L,R=301]