【发布时间】:2014-12-22 10:20:27
【问题描述】:
我想将特定文件夹中的 php 文件重定向到另一个 url,我使用的 htacess 文件适用于 php 文件,但也适用于其他扩展名,就我而言,我只想将 php 文件重定向到新的 url 那是htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^ml\.mysite1\.com/fr/test2/^(.*\.php)$
RewriteRule (.*) http://mysite2.com/$1 [R=301,L]
我的问题是我如何只重定向 *.php 而不是其他扩展名(jpg、png 等)
谢谢
【问题讨论】:
标签: apache .htaccess mod-rewrite redirect