0

Question: How can I change url?

I add anchor tag in wordpress editor to open my file:

<a href="www.example.com/ex ex1.pdf" target="_blank">Ex Ex1</a>

when I click on Ex Ex1 link then it open my file and link looks like: www.example.com/ex ex1.pdf

But i want to open this link open like: www.example.com/ex%20ex1.pdf

1
  • 1
    For best practice, Never use space in your url. Commented Aug 18, 2015 at 5:35

1 Answer 1

1

Try with rawurlencode.

<a href="<?php echo rawurlencode(www.example.com/ex ex1.pdf);?>" target="_blank">Ex Ex1</a>

But the best practice is not to include files with spaces. Just rename the file to something like ˙ex_ex1.pdf

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.