0
mydomain.com/jobresultpage?什麼= &哪裏=阿肯色州
重定向到
yourdomain.com重定向spesific頁面查詢/jobresultpage?what = & where = Arkansas
但其他頁面像
mydomain.com/about.html
mydomain.com/contact.html
不是重定向..
mydomain.com/jobresultpage?什麼= &哪裏=阿肯色州
重定向到
yourdomain.com重定向spesific頁面查詢/jobresultpage?what = & where = Arkansas
但其他頁面像
mydomain.com/about.html
mydomain.com/contact.html
不是重定向..
嘗試增加下面的規則位於根目錄下的.htaccess文件中mydomain.com
RewriteEngine On
RewriteBase/
RewriteCond %{HTTP_HOST} mydomain\.com$ [NC]
#redirect any request for jobresult to yourdomain
RewriteRule ^jobresultpage$ http://yourdomain.com%{REQUEST_URI} [NC,L,R=301]
確保已安裝mod_rewrite,並且您的Override屬性設置爲讀取.htaccess文件。 –
謝謝,你救了我的命:) –