.htaccess显示不正确的网址

时间:2016-04-18 22:07:19

标签: php apache .htaccess

当我导航到页面时:

myexample.com/independent

我希望它能把我带到我的独立页面。所有其他页面都正常工作。但是这个并没有,URL显示为:

myexample.com/independent/?pageid=independent

我正在使用的重写规则是:

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]

RewriteRule ^([A-Za-z0-9-]+)/?$ page.php?pageid=$1

ErrorDocument 404 myexample/404page

你能看到我做错的事吗?

1 个答案:

答案 0 :(得分:0)

@anubhava正确回答,问题是独立者也是一个子目录。