mod_rewrite in vhosts configuration

后端 未结 2 834
星月不相逢
星月不相逢 2020-12-17 20:05

I\'m trying to add mod_rewrite rules in the vhost config but it\'s not working. For the site \"mysite.com\" I want to redirect \"/webmedia/\" to the home page .

Here

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-17 20:50

    This should work if you have mod_rewrite loaded.

    
        Options FollowSymLinks Includes ExecCGI
        AllowOverride All
        DirectoryIndex index.html index.htm index.php
    
    
        Options FollowSymLinks Includes ExecCGI
        AllowOverride All
        DirectoryIndex index.html index.htm index.php
    
    
        ServerAdmin serveradmin@bbgi.com
        DocumentRoot /home/drupal_1
        ServerName mysite.com
        ServerAlias www.mysite.com
        Alias /movies /home/movies/
        ErrorLog /var/log/httpd/mysite.com_err_log
        CustomLog /var/log/httpd/mysite.com_log special
    
        # Rewrite Rules #####################
        RewriteEngine On
        RewriteRule ^/webmedia/(.*) / [R=301,L]
        # end Rewrite Rules #################   
    
    

提交回复
热议问题