Change full url path with .htaccess -


i want change page url .htaccess url 'page.com/web/' , want have page.com. give me htacces code. example

rewriteengine on rewritecond %{request_uri} !^/$ rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$ /?$1 [l] 

try :

rewriteengine on   rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)/?$ web/$1 [nc,l] 

Comments

Popular posts from this blog

gcc - MinGW's ld cannot perform PE operations on non PE output file -

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

c# - Search and Add Comment with OpenXML for Word -