有没有办法更改用php显示的文件,但保留相同的扩展名? 说,我想通过使用动态php的等效文件动态更改非php / html文件(如文本文件)。 在我的.htaccess文件中,我有这个:
RewriteEngine On
RewriteRule ^robots.txt http://domain.com/directory/robots.php [R=301,L]
以上代码将 robots.txt 请求重定向到 robots.php 。 如何让它保持相同的扩展名但加载不同的文件?
答案 0 :(得分:0)
RewriteRule ^robots.txt /directory/robots.php [L]