我正在使用Laravel。我在我的htaccess文件中添加了RewriteRule ^(.*)$ public/$1 [L]
。
现在,我想将所有网址重定向到特定的目标网页。所以我添加了RewriteRule (.*)$ /land [L,R=301]
但是这个更改后我的网站没有加载。我无法用[L,R]属性来处理它。
这是我的代码:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule (.*)$ /newsletter [L,R=301]
RewriteRule ^(.*)$ public/$1 [L]`
有什么帮助吗?