我的文件为“documentRoot / app / webroot / myFile.php”
我需要能够在“mySite / myFile.xml”访问此文件,即当我输入myFile.xml时,调用应该转到“documentRoot / app / webroot / myFile.php”
如何使用.htaccess文件执行此操作?
答案 0 :(得分:2)
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.xml$ documentRoot/app/webroot/$1.php [L]
答案 1 :(得分:1)
Redirect 301 /mySite/myFile.xml http://example.com/documentRoot/app/webroot/myFile.php