我在laravel网站上安装了wordpress,Everythign在Laravel页面,WP Dashboard和WP Home页面上工作正常,除了在Wp内页面上给出了404错误。
我在laravel目录中安装了wordpress,名为public / blogs。
这是公共上的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]
</IfModule>
这是公共/博客wp安装中的htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blogs/
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=35]
</IfModule>
# END WordPress
我有一个代码可以在laravel Filer文件中过滤404页面。 任何帮助将不胜感激。谢谢