Bu kafama yapıyor siz yardımcı olabilir umuyoruz olmuştur. Hata yatıyor ben bulamıyorum.
httpd-vhosts.conf
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
DocumentRoot /opt/lampp/htdocs
ServerName localhost
</VirtualHost>
<VirtualHost 127.0.0.1>
DocumentRoot /home/tilman/Sites/mysite/www
ServerName mysite.lo
</VirtualHost>
/etc/hosts
127.0.0.1 localhost
127.0.0.1 mysite.lo
config.php
$config['base_url'] = "http://mysite.lo";
$config['index_page'] = "";
www/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 index.php
</IfModule>
Şimdi http://mysite.lo
Bana varsayılan denetleyici gösterir. http://mysite.lo/index.php
de. Yani yok http://mysite.lo/index.php/welcome
.
Ama http://mysite.lo/welcome
yok.
Beklendiği gibi http://localhost/mysite/www/welcome
çalışır.
edit: I want to move system and application out of the web root. So my file structure looks like this:
application/
system/
www/
'- index.php
Index.php Ben tabii, sistem ve uygulama klasörüne yolları değişti.