htaccess重定向並希望將(domain.com,domain.com/,domain.com/index.php)上的所有訪問者重定向到www.domain.com /index.php#block_1。下面是我在.htaccess規則將索引頁面重定向到索引頁面,並在htaccess中附加了索引頁面
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
RewriteRule index\.php index.php#block_1 [NE]
我不斷收到錯誤500,有的一個點什麼即時做錯了
我得到這個當我使用這個http://www.domain.com/var/www/html/index2.php#block_1 – 2012-01-07 23:50:17
好了嗎?壞?我將重新迭代:由於您嘗試執行的重定向的性質,您將無法使用同一頁作爲此重定向的源和目標。 – Lethargy 2012-01-08 00:00:29
我得到了,但我的意思是,它重定向並追加URL的相對路徑,即/ var/www/html /' – 2012-01-08 01:15:49