301重定向在Laravel中不起作用

时间:2015-04-30 14:58:20

标签: .htaccess redirect

让我们说我正在尝试从/ table / 09进行301重定向到/ housing-association - 以下代码不会重定向。我将包含整个.htaccess文件。这是一个Laravel装置。其他重定向工作,即所有网址都被定向到index.php,并且正在删除尾部斜杠:

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On

# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]

RewriteCond %{HTTP_HOST} ^fabric [NC,OR]
RewriteCond %{HTTP_HOST} ^www.fabric [NC]
RewriteRule ^/table/[0-9]{2} /housing-associations [R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

有没有人有任何想法。我无法理解为什么这不起作用?

由于

0 个答案:

没有答案