wordpressから自作サイトにrewriteしたい。
以下のこれが問題です。
ポイント
htaccess
1<IfModule mod_rewrite.c> 2RewriteEngine On 3RewriteBase / 4RewriteRule ^index.php$ - [L] 5RewriteCond %{REQUEST_FILENAME} !-f 6RewriteCond %{REQUEST_FILENAME} !-d 7#RewriteRule . /index.php [L] 8RewriteRule ^index.php/(.*) /some-other-dir/aaa/$1 [L] 9</IfModule>
全体
htaccess
1# BEGIN Force SSL for SAKURA 2# 常時HTTPS化(HTTPSが無効な場合リダイレクト) 3<IfModule mod_rewrite.c> 4RewriteEngine on 5RewriteCond %{HTTPS} !on 6RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] 7</IfModule> 8# END Force SSL for SAKURA 9# BEGIN SAKURA Internet Inc. 10<IfModule mod_deflate.c> 11 SetOutputFilter DEFLATE 12 AddOutputFilterByType DEFLATE text/css 13 AddOutputFilterByType DEFLATE application/x-javascript application/javascript application/ecmascript 14</IfModule> 15<IfModule mod_expires.c> 16 ExpiresActive On 17 <FilesMatch ".(css|js)$"> 18 ExpiresDefault "access plus 1 week" 19 </FilesMatch> 20 <FilesMatch ".(gif|jpe?g|png)$"> 21 ExpiresDefault "access plus 1 month" 22 </FilesMatch> 23</IfModule> 24# END SAKURA Internet Inc. 25 26# BEGIN WordPress 27<IfModule mod_rewrite.c> 28RewriteEngine On 29RewriteBase / 30RewriteRule ^index.php$ - [L] 31RewriteCond %{REQUEST_FILENAME} !-f 32RewriteCond %{REQUEST_FILENAME} !-d 33#RewriteRule . /index.php [L] 34RewriteRule ^index.php/(.*) /some-other-dir/aaa/$1 [L] 35</IfModule> 36 37# END WordPress 38
現在
https://aaa.com/ (wordpress) → https://aaa.com/aaa (CMSなしの自作サイト)
やりたい事
https://aaa.com/ (wordpress) → https://aaa.com/ (CMSなしの自作サイト)
今の状態でURLを変更せずに読み込むフォルダだけを変更したい場合
.htaccessでの設定はどうすればいいでしょうか?
サクラサーバーでhome/aaa/wp/の直下にaaaのフォルダ(自作サイト)を入れてます。
<--------------------------->
wp-includes
wp-content
wp-admin
aaa(CMSなしの自作サイト)
.htaccess
の状態です。
<--------------------------->
今は、
https://aaa.com/ (wordpress) → https://aaa.com/aaa (CMSなしの自作サイト)
やりたい事
https://aaa.com/ (wordpress) → https://aaa.com/ (CMSなしの自作サイト)
ご教授お願いいたします。
回答2件
あなたの回答
tips
プレビュー