You are here

第二问,配置drupal简洁(clean)URL

g089h515r806 的头像
Submitted by g089h515r806 on 星期三, 2009-07-08 23:46

 

第2问,配置drupal简洁URL
 
示例:domain.com/?q=admin ,domain.com/admin,后者就是简洁URL,去掉了“?q=”的URL。简洁URL的好处,SEO。
 
1,             F:\xampp\apache\conf,在该目录下找到httpd.conf文件,打开,找到#LoadModule rewrite_module modules/mod_rewrite.so。
将前面的注释符“#”去掉。
 
2,把F:\xampp\apache\conf\apache conf里面的AllowOverride None改为了AllowOverride All,试了一下
 
<Directory "F:/xampp/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important. Please see
    # for more information.
    #
    Options Indexes FollowSymLinks Includes ExecCGI
  
    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride All
 
    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all
 
</Directory>
 
相关文章:
 
drupal下面的clean url(简洁链接)问题解决: http://evance.name/weblog/2007.08.18
 
工作日志:在nginx下实现drupal重写: http://www.xiaoyh.com/nginx-drupal-url
 
 

 

Drupal版本:

评论