次のhtaccessファイルがあります
redirect 301 /index.php/medical-services/botox.html http://www.mysite.ca/medical-services/toronto-botox.php
redirect 301 /index.php/about-us.html http://www.mysite.ca/about-us/
redirect 301 /index.php/contact-us.html http://www.mysite.ca/contact-us.php
redirect 301 /index.php/contact/name.html http://www.mysite.ca/contact-us.php
redirect 301 /index.php/blog/ http://www.mysite.ca/blog/
#lots of 301 redirects
redirect 301 /glisodin-skin-nutrients.php http://www.mysite.ca/
<IfModule mod_rewrite.c>
Options -Indexes
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.mysite\.ca$
RewriteRule (.*) http://www.mysite.ca/$1 [R=301,L]
RewriteRule ^mobile$ /newsite2/mobile/ [L]
RewriteRule ^$ newsite2/ [L]
RewriteRule (.*) newsite2/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !contests
RewriteCond %{REQUEST_FILENAME} !administrator
RewriteCond %{REQUEST_FILENAME} !shop
RewriteRule ^newsite2/(.*)$ ./newsite2/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !contests
RewriteCond %{REQUEST_FILENAME} !administrator
RewriteCond %{REQUEST_FILENAME} !shop
RewriteRule ^(.*)$ /newsite2/$1 [QSA,L]
</IfModule>
しかし、私が入力しようとすると、次のように言いましょう:
http://skinvitality.ca/freebotox/ http://skinvitality.ca/newsite2/freebotox/に リダイレクトします
私はすべてを試しましたが、何もうまくいきませんでした。
どんな助けでも本当に感謝します。