У меня есть веб-сайт, доступный с этого URL:
http://www.mysite.com/cms/index.php
обслуживается из этого каталога:
public_html/cms/index.php
В public_html у меня есть этот .htaccess
RewriteRule (.*) cms/$1 [L]
Что позволяет мне попасть на сайт вот так:
http://www.mysite.com/index.php
Но теперь, если я буду ссылаться на «старый» адрес, я хочу перенаправить на перезаписанный адрес с постоянным кодом перенаправления.
например:
http://www.mysite.com/cms/?q=node/1
is redirected to...
http://www.mysite.com/?q=node/1
Как я могу это сделать?
РЕДАКТИРОВАТЬ: Также это написано в файле .htaccess, поставляемом с Drupal (cms). Я пробовал включить его, но, похоже, это не дает никакого эффекта.
# Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# VirtualDocumentRoot and the rewrite rules are not working properly.
# For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
РЕДАКТИРОВАТЬ: включение большего количества моего файла .htaccess - кажется актуальным.
# Block access to "hidden" directories whose names begin with a period.
RewriteRule "(^|/)\." - [F]
#Strip cms folder from url
RewriteRule (.*) cms/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
# Rules to correctly serve gzip compressed CSS and JS files.
# Requires both mod_rewrite and mod_headers to be enabled.
<IfModule mod_headers.c>
# Serve gzip compressed CSS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
# Serve gzip compressed JS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
# Serve correct content types, and prevent mod_deflate double gzip.
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
<FilesMatch "(\.js\.gz|\.css\.gz)$">
# Serve correct encoding type.
Header append Content-Encoding gzip
# Force proxies to cache gzipped & non-gzipped css/js files separately.
Header append Vary Accept-Encoding
</FilesMatch>
Используйте редирект 301, а не mod_rewrite.
Примеры через googlefu: http://www.webweaver.nu/html-tips/web-redirection.shtml
Изменить: или R = 301 в ваших флагах перезаписи.