我没有获取get变量但是当我将代码放入生产中时,get变量显示....是否需要在我的mac上打开才能使其工作
我很确定我有改编的重写....任何想法
这也在我的httpd.conf
中LoadModule rewrite_module libexec/apache2/mod_rewrite.so
答案 0 :(得分:1)
查看您的httpd.conf
文件,查找以下内容:
<Directory "{your_htdocs_dir}">
...
AllowOverride None
...
</Directory>
根据:http://httpd.apache.org/docs/2.2/howto/htaccess.html:
通过将AllowOverride指令设置为“none”,可以完全禁用.htaccess文件。
将其更改为:AllowOverride All
(或更安全的内容,您可以在上述链接中找到选项),它应该可以正常工作。