0
我有一個域頁http://www.domain.com或domain.comhtaccess重定向域到wordpress頁面?
,我想用htaccess的重定向http://www.domain.com或domain.com到domain.wordpress.com
目前,我有這樣的:
RewriteOptions inherit
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^/?$ "http\:\/\/domain\.wordpress\.com\/" [R=301,L]
這不是重定向,有人可以幫助我嗎?
謝謝!