记录一次apache重定向
apache的web服务器上
特殊原因需要将某个文件夹下的访问都进行重定向;
/addons/ 重定向访问到 /temp/addons/上
修改.htaccess文件
RewriteEngine On
RewriteRule ^/?addons/(.*) /temp/addons/$1 [L]
apache的web服务器上
特殊原因需要将某个文件夹下的访问都进行重定向;
/addons/ 重定向访问到 /temp/addons/上
修改.htaccess文件
RewriteEngine On
RewriteRule ^/?addons/(.*) /temp/addons/$1 [L]