1
我正在尋找這樣做:.htaccess語法將一個域重定向到另一個而不匹配?
重定向example.com/(any-number)到example2.com/landing-page
example.com/(any-number)的數百篇文章全部其中一個數字結束。我不打算將我的其他網站上的電話號碼與直接訪問者的電話號碼匹配到單個登錄頁面。
當前htaccess的是這樣的:
`# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress`
謝謝,但那似乎不起作用。編輯我的原始帖子,以顯示我的htaccess文件的樣子。 – 2014-09-13 14:55:16