0
我正在建立我的網站,但我有舊鏈接,現在我們正在使用搜索引擎優化友好鏈接。 例如,老用戶是www.mysite.com/view_member.php?id=X使用.htaccess參數重定向舊網址
現在,我們的鏈接www.mysite.com/profile/X
我想知道如何使用的.htaccess
我想:
RedirectMatch ^/view_member.php?id=(.*) profile/$1 [R]
但沒有運氣。
謝謝!
編輯
附加電流.htaccess文件
RewriteEngine on
RewriteCond $1 !^(index\.php|public|user_guide|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
<ifModule mod_headers.c>
Header set Access-Control-Allow-Origin: *
</ifModule>
感謝您的答覆,但它得到了我的內部服務器錯誤。 我編輯了我的主帖t顯示我目前的.htaccess – 2013-02-19 08:54:28