我还不了解.htaccess。我有问题,codeigniter应用程序在本地主机上无法运行,我的应用程序在此文件夹结构中
C:/xampp/htdocs/dev.application.pl/public_html/
我的config.php是
$config['base_url'] = 'http://localhost/dev.application.pl/';
在文件夹dev.application.php/
中,我有这样的.htaccess
RewriteEngine On
RewriteBase /public_html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
但这不起作用。
答案 0 :(得分:0)
编辑您的主机文件并添加 127.0.0.1 dev.application.pl
$ config ['base_url'] ='http://dev.application.pl/';
htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
答案 1 :(得分:0)
为此编辑您的.htaccess:
RewriteEngine On
RewriteBase /dev.application.pl/public_html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
希望它会有所帮助:)