سؤال

How would I, in apache 2.4.9, add a fake folder to all URLs?

Example:

http://localhost/index.html

changes to

http://localhost/folder/index.html

?

هل كانت مفيدة؟

المحلول

Put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteRule ^/?folder(/.*)?$ /$1 [L,NC]
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top