2016-03-03 68 views
1

我有這個htaccess的代碼工作正常重定向所有pro.php請求的index.php:htaccess的重定向301 pro.php到index.php許多目錄

Redirect 301 /de/pro.php /de/index.php 
Redirect 301 /en/pro.php /en/index.php 
Redirect 301 /fr/pro.php /fr/index.php 

,但就是有一種優雅的可能性只有一行代碼用於許多目錄/ de/en/fr/..?

回答

0

您可以使用RedirectMatch:

RedirectMatch ^/(.+)/((?!index).+)\.php$ /$1/index.php 
+0

你也可以硬編碼的目錄中第一個表達式:(+)^// - > ^/FR | EN | RU | TM/- >列出所有你必須是安全的 –