在Laravel里面的Wordpress

时间:2016-01-05 07:06:24

标签: wordpress laravel

我在laravel应用程序中有wordpress。我的完整应用程序是使用laravel除了博客。现在我想通过laravel处理一个页面,但博客正在它之前。

现在, http://tauriel.local/blog/test

预计, http://tauriel.local/test

我的整个博客都在博客文件夹中。如何从我的wordpress页面中删除博客?

1 个答案:

答案 0 :(得分:0)

只需排除.htaccess

中的blog文件夹即可

我相信你在文件夹blog

中有wordpress内容
RewriteRule ^(blog)($|/) - [L]

即,

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>
    RewriteRule ^(blog)($|/) - [L]
    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]
</IfModule>