나는 Joomla 로컬 사이트가 있습니다 : http://localhost:8080/vanderGiesen
이지만 라이브 사이트로 직접 리디렉션됩니다 : https://www.gitaarschoolvdgiessen.nl/en/
.localhost가 라이브 사이트로 리디렉션하지 못하도록하는 방법
난 이미 configuration.php
파일이 변경 :
public $tmp_path = '/var/www/vhosts/http://localhost:8080/vanderGiesen/httpdocs/joomla/tmp';
public $log_path = '/var/www/vhosts/http://localhost:8080/vanderGiesen/httpdocs/joomla/logs';
그러나 아무것도 변경되지 않습니다.
는 또한 줌라 폴더에.htaccess
을 편집하고 다음 행 삭제 : 있도록
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.gitaarschoolvdgiessen\.nl
RewriteRule (.*) http://www.gitaarschoolvdgiessen.nl/$1 [R=301,L]
## End - Custom redirects
##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just/for root).
##
# RewriteBase/
## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
그래서 변경하는 것, 로컬 사이트가 라이브 버전으로 리디렉션되지 않습니다를?
구성 파일을 변경 한 이유가 무엇입니까? – castis
HI, at : D : \ Xampp \ htdocs \ vanderGiesen – LikeToDo