Answer the question
In order to leave comments, you need to log in
How to configure htaccess for a specific directory?
How can he point to a special directory?
I just have wordpress in the root of the site,
and in the page_online directory another site
in page_online can I shove my htaccess individual?
linewire.ru/t/page_online/index.php?view=site/two
is done to remove this garbage
Answer the question
In order to leave comments, you need to log in
.htaccess in the case described below should be at the root.
mod_rewrite must be enabled in PHP
Add code to .htcaccess (you can change the path in RewriteRule)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question