S
S
Steve2022-01-20 23:47:23
PHP
Steve, 2022-01-20 23:47:23

How to hide the real path to css?

Need to hide the real css path
from /assets/css/style.css
to /css/style.css
Is it possible to do this with .htaccess and if so how please!

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Andrey Mokhov, 2015-11-19
@bismoney

SELECT t1.*
FROM table_one t1
INNER JOIN table_two t2 ON t2.id = t1.table_two_id AND t2.text1 IS NOT NULL

E
entermix, 2015-11-19
@entermix

SELECT * FROM table_one WHERE text1 IS NOT NULL AND EXISTS(SELECT id FROM table_two WHERE id = table_one.id)

U
Ukrainskiy, 2022-01-21
@Ukrainskiy

Of course you can. Here:

RewriteEngine on 
RewriteRule ^assets/(.*)$ $1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question