【发布时间】:2015-09-02 04:14:24
【问题描述】:
这是现在的 .htaccess 文件
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
但我想更改此文件,因为当请求来自 blog.domain.com 时,它重定向到 /blog 文件夹和其他文件到 index.php
【问题讨论】:
-
那么你使用了什么导致了循环?
-
当我将 url 更改为 /blog
标签: php apache .htaccess mod-rewrite laravel-4