我联系你,因为我的代码点火器有点问题。 我有一个重写网址的.htaccess。例如,当我点击联系人时,网址显示并加载:localhost:8888 / my_site / contact但页面保持不变。
所以我真的不明白发生了什么事?
你有同样的问题吗?
你知道吗?先谢谢你的帮助人员:)
这是我的htaccess文件(正确加载,我尝试添加一个随机行,它显示错误,所以很好):
Options +FollowSymlinks -Indexes
RewriteEngine On
#RewriteBase /
## in case the URL is not an actual FILE
RewriteCond %{REQUEST_FILENAME} !-f
## or an actual directory
RewriteCond %{REQUEST_FILENAME} !-d
## send everything to the index, for MVC
RewriteRule ^.*$ ./index.php
DirectoryIndex index.php index.html
答案 0 :(得分:0)
试试这个.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]