.htaccess无法在1& 1托管中工作,正在使用本地

时间:2015-07-07 15:46:48

标签: php .htaccess yii2

它给出了500 Internal Server Error。我想知道为什么这个代码不起作用,因为它在本地很好。我认为这与1and1托管有关。这是我的.htaccess文件:

Options -Indexes

<IfModule mod_rewrite.c> 
RewriteEngine on

RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ frontend/web/$1 [L] 
</IfModule>

# Deny accessing below extensions
<Files ~ "(.json|.lock|.git)">  
Order allow,deny
Deny from all
</Files>

# Deny accessing dot files
RewriteRule (^\.|/\.) - [F]

如何解决问题?

0 个答案:

没有答案