A
A
Alexander Arbuzov2012-10-29 21:31:36
Apache HTTP Server
Alexander Arbuzov, 2012-10-29 21:31:36

Help .htaccess

There is a .htaccess file following. content:

DirectoryIndex index.php
Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php [QSA, L]


It replies with a redirect to some cms and does not allow you to set non-existent names by sending everything through a regular router. In the new shop directory of this site, I need to deploy another cms, but the router of this one, accordingly, does not give me access to the shop directory. How to exclude the shop directory from the rules of this cms? And will there be any problems with the cms that I deploy in the shop if it has its own .htaccess?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
ArtEx, 2012-10-29
@arbuzzz

in the /shop/ directory, you can create .htaccess with the content of
RewriteEngine Off
Or, if it has its own .htaccess, add this line there.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question