0
我有一個奇怪的問題htaccess文件www。重定向問題
我將代碼添加到htaccess文件以將任何非www重定向到www。但現在帶我到子目錄網站的文件都在
從DNS的cPanel我已經指出域目錄爲/ main_web
,當我把在throughtheglasseye.org現在只需要到hxxp:/ /www.throughtheglasseye.org/Main_web/有沒有發現
在這裏的錯誤404頁,是我的代碼 -
# Redirect non-www to www:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
# Disable htaccess view:
<Files .htaccess>
order allow,deny
deny from all
# Disable directory browsing:
</Files>
IndexIgnore *
林不知道這是否是正確的請讓我知道我可以做什麼來修復此問題
非常感謝