0
.htaccessファイルがメイン/インデックスページ(http://example.comではなくhttp://example.com/index.html)を他のページにリダイレクトするサイトを作成しています。最初のRewriteRule).htaccess mod_rewriteも「index」ページからリダイレクトする
RewriteEngine on
RewriteBase/
# Index
RewriteRule ^$ /Page!Main_page[R]
# Pages
#RewriteCond %{REQUEST_URI} !^[^!/]!
#RewriteRule ^(.*)(?!\?(.*))?$ /Page!$1?$2
# Pages with "!"
RewriteRule ^([^!]*)!([^!]*)$ /website.php/$2?section!$1 [QSA]
site.com/inex.phpのようにsite.com/main/index.phpをリクエストする必要がある場合は、 –