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://DOMAIN.COM/rss.php它应该加载http://DOMAIN.COM/feeds.xml 而没有重定向。如果有人知道如何实现这一点,请帮助我。
通过访问 URL ,它应该在没有重定向的情况下http://DOMAIN.COM/rss.php加载 http://DOMAIN.COM/feeds.xml
http://DOMAIN.COM/rss.php
http://DOMAIN.COM/feeds.xml
您可以在根目录的一个 .htaccess 文件中尝试此操作:
Options +FollowSymlinks -MultiViews RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !feeds\.xml [NC] RewriteRule ^rss\.php/?$ /feeds.xml [L,NC]