2012-04-30 48 views
0

,我有以下我的.htaccess文件時,我打的正常工作,除了:如何停止htaccess的重定向URL替換

http://bunkerbuster.com/profiles/1

在地址欄中的網址將被替換爲新的URL 。我不希望發生這種情況,我希望URL仍然顯示bunkerbuster.com

感謝您的幫助。

Options +FollowSymLinks 
RewriteEngine On 
RewriteBase/
RewriteRule ^profiles/([0-9]+)$ http://projectzebra-bunkerbuster.herokuapp.com/profiles/$1 [R,L] 
RewriteRule ^profiles/([0-9]+)/$ http://projectzebra-bunkerbuster.herokuapp.com/profiles/$1 [R,L] 

回答