我买了这个脚本: http ://codecanyon.net/item/ninja-media-script/6822888
我想在Apache服务器上运行这个。
现在我得到了问题,我必须将htaccess转换为Apache重写。 经过几个小时的努力,我希望你能帮助我。
首先.htaccess是在根文件夹中:
RewriteEngine on RewriteRule ^$ public/ [L] RewriteRule (.*) public/$1 [L]
在根/公共我有这个htaccess。
Options -MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L]
我什么时候可以访问example.com/install ,显示404错误。
有人能帮助我吗? 🙂