2017-03-16 182 views
0

不工作我有一个虚拟主机local.mywebsite.com,我在的httpd的虚拟主机使用重写规则 在我的.htaccess文件XAMPP的mod_rewrite在本地主机虚拟主机

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK) 
RewriteCond %{HTTP_USER_AGENT} libwww-perl.* 
RewriteRule .* – [F,L] 
RewriteCond %{QUERY_STRING} (\"|%22).*(<|>|%3) [NC,OR] 
RewriteCond %{QUERY_STRING} (javascript:).*(\;) [NC,OR] 
RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3) [NC,OR] 
RewriteCond %{QUERY_STRING} (\;|\'|\"|%22).*(union|select|insert|drop|update|md5|benchmark|or|and|if) [NC,OR] 
RewriteCond %{QUERY_STRING} (base64_encode|localhost|mosconfig) [NC,OR] 
RewriteCond %{QUERY_STRING} (boot\.ini|echo.*kae|etc/passwd) [NC,OR] 
RewriteCond %{QUERY_STRING} (GLOBALS|REQUEST)(=|\[|%) [NC] 
RewriteRule .* - [E=BadQueryString,F] 

RewriteRule^- [E=BASE:{DOCBASE}] [L] 

RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ 
RewriteCond %{HTTPS} off [OR] 
RewriteCond %{HTTPS}:s on:(s) 
RewriteRule ^(.*)$ http%1://local.%{HTTP_HOST}/$1 [R=301,L] 

RewriteCond %{REQUEST_URI} /admin/ 
RewriteRule .* - [S=2] 

RewriteRule ^(.*)index\.php$ %{ENV:BASE}$1 [R=301,L] 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^([a-zA-Z0-9!-/]*)$ %{ENV:BASE} [L] 

。 CONF

<VirtualHost *:80> 
    DocumentRoot "E:/websites/local.mywebsite.com" 
    ServerName local.mywebsite.com 
    <Directory "E:/websites/local.mywebsite.com"> 
    # AllowOverride All  # Deprecated 
    # Order Allow,Deny  # Deprecated 
    # Allow from all   # Deprecated 
    AllowOverride All 
    # --New way of doing it 
    Require all granted  
</Directory> 

和在httpd.conf

DocumentRoot "C:/xampp/htdocs" 
<Directory "C:/xampp/htdocs"> 
Options Indexes FollowSymLinks Includes ExecCGI 
AllowOverride All 
Require all granted 

和我去掉在LoadModule rewrite_module模块/ mod_rewrite.so

但local.mywebsite.com/fr返回错误404

+0

你有没有在httpd.conf中注释'LoadModule rewrite_module modules/mod_rewrite.so'? – jim

+0

我在窗口,所以我通过编辑的httpd文件手动做到了,我去掉在LoadModule rewrite_module模块/ mod_rewrite.so – Amine

回答

0

取消注释rewrite_module modules/mod_rewrite.so后,您是否重新启动了apache? 如果不是这样,重新启动apache。如果是,请检查httpd.conf文件中是否包含httpd-vhosts.conf。如果不是这样点它。

让sur在你的项目中有这个文件夹“fr”。

如果仍然没有工作,我推荐你把这个项目在htdocs文件夹中的文件夹XAMPP。可能存在权限问题。

+0

我并不需要添加FR文件夹,因为它是一个(虚拟文件夹)中重写规则,以便我就像你说的那样是一个正确的访问问题 – Amine

+0

当然你的权利。让我知道,如果它的工作 –

+0

不幸的是,把项目在htdocs文件夹它不能正常工作:( – Amine