반응형
Wordpress 사이트에 대한 도메인 마스킹이 있는 htaccess 리디렉션이 작동하지 않습니다.
아래 .htaccess 구성이 마스킹으로 도메인 리디렉션을 달성하기 위해 Wordpress 사이트에서 작동하지 않습니다.
DirectoryIndex index.php
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?redir2$ [NC]
RewriteRule ^ http://redir1%{REQUEST_URI} [L,NE,P]
의 .htaccess 입니다.redir2
로 리디렉션하기 위해redir1
가면을 쓰고예를 들어 사용자를 입력하는 것이 목표입니다.redir2/sub
, 제공되는 내용의redir1/sub
, url을 보여주었지만.redir2/sub
.
현지 설치에서 잘 작동하고 있습니다.그러나 내 공유 호스팅에서는 마스킹 없이 리디렉션됩니다.서버 구성에 문제가 있을 수 있습니다.
뭐가 문제가 될 수도 있을까요?
여기 기록에 대해서만 제가 마스킹으로 리디렉션할 때 인덱스 파일에 문제가 있을 때 루트 디렉터리를 요청할 때 도메인 마스킹이 작동하지 않는 htaccess redirect와 같은 유사한 질문이 있습니다.
워드프레스 표준 URL 기능은 이를 위해 설계되었습니다.
이 플러그인은 더 이상 지원되지 않지만 작동할 수도 있습니다.
<?php
/*
Plugin Name: Disable Canonical URL Redirects
Plugin URI: http://www.ImagineThought.com/
Description: Disables the "Canonical URL Redirect" feature of WordPress (in versions of Wordpress 2.3 and greater). To use this plugin, simply activate it. Then, disable this if you need to re-enable the "Canonical URL Redirect" feature of WordPress.
Version: 1.0.11.0228
Author: Geoffrey Griffith
Author URI: http://www.ImagineThought.com/
License: GPL
*/
remove_filter('template_redirect', 'redirect_canonical');
?>
언급URL : https://stackoverflow.com/questions/29318452/htaccess-redirect-with-domain-masking-for-wordpress-site-not-working
반응형
'programing' 카테고리의 다른 글
구조물의 함수 (0) | 2023.10.23 |
---|---|
NSS 문자열을 설정 길이로 자르는 방법은 무엇입니까? (0) | 2023.10.23 |
A1에서 실제 사용한 셀까지의 범위를 반환합니다. (0) | 2023.10.23 |
MySQL Views - 사용 시기 및 사용하지 않는 시기 (0) | 2023.10.23 |
jquery In()이 .html()과 함께 작동하지 않는 이유는 무엇입니까? (0) | 2023.10.23 |