Note that there are some explanatory texts on larger screens.

plurals
  1. POCodeigniter links broken in localhost
    primarykey
    data
    text
    <p>I am working on updating a project for a company. I transferred files to my localhost. So project is in "localhost/project/". When I open the website in the browser all the links point to "localhost/filename", directory up a level from project folder. I did some research around, and noticed poeple suggesting changing the htaccess, but still couldn't get the right result. And suggestiong please let me know. If you want anything on my part just ask. Thank!</p> <pre><code>RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </code></pre> <p>Start :</p> <pre><code>http://localhost/projectfolder/ &lt;a href="/" title=""&gt;Home&lt;/a&gt; </code></pre> <p>leads to : </p> <pre><code>http://localhost/ </code></pre> <p>Config.php :</p> <pre><code>$config['base_url'] = 'http://localhost/projectfolder/'; $config['index_page'] = ""; $config['uri_protocol'] = "AUTO"; $config['url_suffix'] = ".html"; $config['language'] = "english"; $config['charset'] = "UTF-8"; $config['enable_hooks'] = FALSE; $config['subclass_prefix'] = 'MY_'; $config['permitted_uri_chars'] = 'a-z &amp; + 0-9~%.:_\-,\'?'; $config['enable_query_strings'] = FALSE; $config['controller_trigger'] = 'c'; $config['function_trigger'] = 'm'; $config['log_threshold'] = 0; $config['log_path'] = ''; $config['log_date_format'] = 'Y-m-d H:i:s'; $config['cache_path'] = ''; $config['encryption_key'] = ""; $config['sess_cookie_name'] = 'ci_session'; $config['sess_expiration'] = 7200; $config['sess_encrypt_cookie'] = FALSE; $config['sess_use_database'] = FALSE; $config['sess_table_name'] = 'ci_sessions'; $config['sess_match_ip'] = FALSE; $config['sess_match_useragent'] = TRUE; $config['sess_time_to_update'] = 300; $config['cookie_prefix'] = ""; $config['cookie_domain'] = ""; $config['cookie_path'] = "/"; $config['global_xss_filtering'] = FALSE; $config['compress_output'] = FALSE; $config['time_reference'] = 'local'; $config['rewrite_short_tags'] = FALSE; $config['proxy_ips'] = ''; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload