Rerwite wordpress plugin url to custom url - php

I have this plugin it displays like this in front end
Sitename.com/?page=pluginname
I tried to rewrite this using .htaccess but it didn't work
What I want is change the name of the plugin in the URL to custom name
is that possible?
let me know

Related

how create a custom url in wordpress for page with slash like /se/pagename

I added a page in wordpress. Wordpress created a url like
https://mywebsite.com/page-title
but I want to change this url like https://mywebsite.com/se/page-title
My Permalink Settings shows https://mywebsite.com/sample-post/
and website is already indexed on google so I can't change my paramlink setting.
I also tried with htaccess and also from wordpress add_rewrite_rule() but no result is coming.
Any help how can I do this?
The simplest way to make your page url like www.example.com/se/se1 instead of www.example.com/se1 is to create page se and se1 make as child page of se.
With this option you'll saved your wordpress website permalink structure, you'll in not need to change your other pages redirects for google indexing

Change URL of custom post type in wordpress

Currently, I have URL like
/recipes-detail/?recipe=(Slug of recipe)
How Can I change this to
/recipes-detail/(Slug of recipe)
Currently, I am fetching the recipe custom plugin.
Change Permalink Settings to Post name
You can add to the .htaccess file a rewrite mode
RewriteRule ^recipes-detail/[a-z0-9]+(?:-[a-z0-9]+)*$/ ./recipes-detail/?recipe=$1
Now if you use this address yourwebsite.com/recipes-detail/cake-of-chocolate will work exactly as you will be doing yourwebsite.com/recipes-detail/?recipe=cake-of-chocolate
So you can now build your urls with the friendly option.

Change permalink by htaccess

I need a help from htaccess expertise
Need to change url to make it user friendly Here is my url of site for example
http://www.example.com/the-collection/#the-colection1/
Here is my wordpress page http://www.example.com/the-collection
For this page am using 'shortcode' of plugin that automatic add this collection1 with # tag
Here is also pagination come with this plugin then url seems link this
http://www.example.com/the-collection/#the-colection1/page1
What I need I want to make my url like
http://www.example.com/the-collection/page1
I want to remove that #collection1 (only want to remove not replace with any other text because that i can do from backend easily)

Rewrite url in wordpress for additional php files

I have created php file in theme.
So for that page I am getting url as:
.../site-name/wp-content/themes/mytheme/admin-dashboard.php
I want it as
../site-name/admin-dashboard
So how to do it?Using htaccess or is there any other way
create a new wp page, name it admin-dashboard
create a shortcode for admin-dashboard.php content and add it to admin-dashboard wp page

WordPress: Custom URLs for pages

I have a custom post typed called Uploads on my WP site which (using v3.1) has an index archive at this url: http://domain.com/uploads
Now because this is created automatically by WordPress and not using a page like in previous versions of WP I am unable to create a sub-page like so: http://domain.com/uploads/my-page
How can I create a page and change it's url to fake it so it looks a child page of uploads?
Thanks
If you have just one page ... try creating your own plugin:
This is for rewrite rule
This is for rewrite params
And do not forget to disable Canonical redirection
This is faster then searching for working solution ... just if you have 1,2,3 custom urls.
This worked for me: http://wordpress.org/extend/plugins/custom-permalinks/
Did you try the url edit function, in edit page?

Categories