我在MacOS Sierra 10.12.2上创建了localhost
除了Pretty Urls之外,一切都很好。
http://localhost/blog/向我展示了网站。 点击http://localhost/blog/contact/后,它会显示我没有其他所有内容的联系页面(css,javascript,index的标题和页脚)。看起来我打开了http://localhost/blog/contact.php
我试图添加到index.php和contact.php:
echo $_GET['page'];但没有任何事情发生。空值。
我的 .htaccess 包含:
RewriteEngine On RewriteRule ^([a-zA-Z0-9-/?+%]*)?$ index.php?page=$1 [L,QSA]
我花了很多时间才找到合适的解决方案,但对我来说没有任何作用。
感谢您的帮助。