404 htaccess clean url出错

时间:2014-01-16 08:23:23

标签: php apache .htaccess

我有一个网站,但在使用干净网址作为我的帖子网址时出现404错误

.htaccess代码是

RewriteEngine On
RewriteRule ^post/([^/.]+)/?$ post.php?post=$1 [L]
RewriteRule ^([^/.]+)/?$ index.php?page=$1 [L]

服务器中的文件如下:

index.php
post.php
.htaccess

所有在一个主要的public_html文件夹

此网址正常http://www.example.com/1

但我在http://www.example.com/post/12345

中有404错误

我不知道有什么问题......请告诉我该怎么做

1 个答案:

答案 0 :(得分:3)

尝试通过在htaccess文件中的某处添加多视图来关闭多视图:

Options -Multiviews