简体   繁体   中英

Drupal how to change url path

I have server with multiply sites, for example i have domain http://site.com/ and .htaccess file in server root:

RewriteRule ^site.com/ - [L]
RewriteCond %{HTTP_HOST} ^site\.com$
RewriteCond %{DOCUMENT_ROOT}/site%{REQUEST_URI} -d
RewriteRule [^/]$ %{REQUEST_URI}/ [R,L]
RewriteCond %{HTTP_HOST} ^site\.com$
RewriteRule (.*) site.com/$1 [L,QSA]

And i have installed drupal in path: C:/Servers/Web/www/site.com/drupal The problem was that the site links looks - http://site.com/site.com/drupal/user/logout , but i found the $base_url in settings.php , change it and site links looks nice http://site.com/user/logout . But i create new problem - all links redirect me to index.php (not working normaly)

Whats wrong?

不要更改$ base_url>,您不要碰它。我认为您需要在Web服务器(对于Apache httpd.conf)中的虚拟主机条目到C:/Servers/Web/www/site.com

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM