Is there a way to create alias without using htacess, permalinks or delving into code?

I would like to create an alias on my site so that specific URLs will redirect to a specific page I have already created.

For example, if the user types in www.example.com/blog/products it will redirect to www.example.com/blog/?page=10

Is what I want to do possible with WordPress?

I do not want to modify my htacess.
I do not want to modify the template or add code anywhere.
I do not want to change my permalink structure.

Please do not suggest these methods. I do not mind installing a plugin if that’s the only way.

3 Answers
3

WordPress core doesn’t have any means of managing redirects by itself. As you are excluding changes in the .htaccess file and adding code yourself, the only remainig option is to use a plugin.

If you search the WP Plugin Directory for ‘redirect’, you will find one very popular one (I sometime use it myself) but there are also many very specialized ones for sepecific use cases.

Leave a Comment