1
我想重定向每個www。網址到沒有www的網址。使用.htaccess但我得到一個無限的重定向循環。無限重定向循環htaccess
有沒有人看到我在做什麼錯了?
RewriteEngine on
RewriteBase /_extern/pod/
RewriteCond %{HTTP_HOST} !^site\.nl/_extern/pod/$ [NC]
RewriteRule ^(.*)$ http://site.nl/_extern/pod/$1 [R=301,L]
#Indexes uitzetten
Options -Indexes
#Cross site access toestaan
Header set Access-Control-Allow-Origin "*"
Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
#POD
DirectoryIndex index.php
RewriteRule ^info/(.*).html catlisting.php?alias=$1 [L]
RewriteRule ^nieuws/(.*).html nieuws.php?alias=$1 [L]
RewriteRule ^(.*).html content.php?alias=$1 [L]
site.nl/extern/pod/需要成爲所有URL的根。
我basetag如果是相關的:
<base href="http://site.nl/_extern/pod/">
這很有用,謝謝!所有其他解決方案將我的頁面重定向回根。 – twan
沒問題,很高興我可以幫助:)! – Lag