programing

Wordpress 사이트에 대한 도메인 마스킹이 있는 htaccess 리디렉션이 작동하지 않습니다.

muds 2023. 10. 23. 22:08
반응형

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

반응형