2017-05-31 91 views
1

我想創建一個htaccess的重寫實現以下htaccess的重寫一個特定的URL在特定的URL

我有這樣http://www.example.com/directory/test.php一個網址,並希望在此網頁展示時http://www.example.com/directory/test.html

我的內容嘗試以下,但沒有奏效。任何人都可以請讓我知道我在做什麼錯在這裏

RewriteEngine On 
RewriteBase /directory/ 
RewriteCond ^directory/test.html/?$ [NC] 
RewriteRule ^(.*)http://www.examle.com/directory/test.php [NC,L] 

任何幫助,將不勝感激

回答

2

您可以使用:

RewriteEngine On 
RewriteRule ^directory/test\.html/?$ directory/test.php [NC,L]