所以我在我的 .htaccess 文件中有这个
RewriteEngine On
RewriteBase /core/
RewriteCond %{QUERY_STRING} ^page=([0-9]+)$
RewriteRule ^page page/%1/? [L]
我的网址是
http://localhost/core/page.php?page=8
应用规则后,我得到了..
Not Found
The requested URL /core/page/8/ was not found on this server.
这是在 wampserver 2.2 上运行的
文件结构看起来像
c:/wamp/www/core
.htaccess 位于 /core/ 目录中。我错过了什么......我检查了我的 apache.conf 文件,它看起来很好。