我正在尝试重定向网络的任何网址,例如myweb.com/drupal/login
到myweb.com/login
。我的意思是说我的网址包含网址myweb.com/drupal/*
的每个网址都应该替换为myweb.com/*
。我已尝试在modules/systems/system.api.php
function hook_init() {
$path = current_path();
if (drupal_match_path($path, 'drupal/*')) {
drupal_goto('/' . $path);
}
}
我也试过.htaccess
RewriteEngine on
RewriteRule ^drupal/(.*)$ /$1 [L, R=301]
但它也没有用。有什么帮助吗?