http://subdomain.domain.com/page/
URLを: tohttp://subdomain.domain.com/?page=pagename
と:
http://domain.com/page/
toに変更したいのhttp://domain.com/?page=pagename
ですが、あまり成功していません。
これが私のhtaccessファイルです[更新]
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
# Remove 'www'
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Add slashes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://resolutiongaming.com/$1/ [L,R=301]
# Subdomain redirect
RewriteRule ^/(webdev)/(.*)$ http://webdev.resolutiongaming.com/$1 [R=301,L]
RewriteRule ^/(artwork)/(.*)$ http://artwork.resolutiongaming.com/$1 [R=301,L]
RewriteRule ^/(music)/(.*)$ http://music.resolutiongaming.com/$1 [R=301,L]
# Search engine optimization
RewriteRule ([a-zA-Z]+)/$ ?page=$1
私RewriteRule ^([a-zA-Z]+)/$ ?page=$1
はドメインのURLで機能しているように見えたが、サブドメインでは機能していないものを使用しました。どんな助けでもいただければ幸いです。