0
我想重定向來自引用鏈接文件夾的所有請求。這是場景。使用基於引用鏈接的htaccess重定向
我想所有引薦請求從http://www.example.com/demo/ex1/*。*到http://www.example.com/ex1/*。*
幫助請。
感謝
我想重定向來自引用鏈接文件夾的所有請求。這是場景。使用基於引用鏈接的htaccess重定向
我想所有引薦請求從http://www.example.com/demo/ex1/*。*到http://www.example.com/ex1/*。*
幫助請。
感謝
您有許多子頁面,你可以這樣做:
# Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://mt-example.com/newdirectory/newfile.html
或者是一些具體的原因是什麼?
如果是的話,你可以用一下這一點,並獲得你的答案;)
# To redirect all users to access the site WITHOUT the www. prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.mt-example\.com$ [NC]
RewriteRule ^(.*)$ http://mt-example.com/$1 [L,R=301]
萬一你問這是對的.htaccess
但是這件事情與REFER rite無關? HTTP_REFERER還是有些東西? – Sam 2010-07-12 09:46:51
及其對的.htaccess – Sam 2010-07-12 09:37:54