I have my own domain
www.mxm.com (just an example)
and i create other page with this url:
www.mxm.com/testpage1
in the carpet testpage1 i installed wordpress and i redirect to
www.testpage1.com in my cpanel.
So now i can enter www.testpage1.com with no problem but when i click in other menu item like blog the url change to:
www.mxm.com/testpage1/blog
I want to know how to change
www.mxm.com/textpage1/blog
I want to get
www.testpage1.com/blog
I was reading something about editing wp-config.php or wp-setting.php but i didn't get it.
There is a way? I'm kind of newbie using wordpress. Thanks btw.
I finally made it!
I just edit the .htaccess and the table with credentials on my DB and it works.
Other way i found was changing it with the dashboard of Wordpress. In settings there is a field where u can change the address of wordpress and for the website.
This two urls help me a lot:
https://wordpress.org/support/topic/problem-moving-wp-now-only-the-home-page-works
https://wordpress.org/support/topic/redirect-a-domain-to-my-wordpress-url
Related
Image of the website for which I want to change the URL:
I have a plugin called tutor LMS in WordPress and I customized a lot of things but the only thing which I am unable to customize is the URL, It is calling a template called my-profile.php.
Now I can successfully customize its all parts except the URL.
Is there any way so that I can change its URL
from:
websitename/dashboard/my-profile/
to
websitename/online-id-card/
any help would be appreciated 🙏
The Tutor LMS plugin has a "Permalink Settings" screen that lets you set the URL.
https://docs.themeum.com/tutor-lms/settings/permalink-settings/
Go to your WordPress settings >> permalinks
You'll see the option to customise the url
I created a wordpress site, you can check it here http://www.enterhelix.com/shan/wordpress4.5/ , as I wanted it to be in a separate domain, so I created a domain http://www.pioneersurgicalsystems.in/ and copied all files and folder in the root of pioneersurgicalsystems.in including DATABASE. If you open pioneersurgicalsystems.in/ in your browser it will open, but if you click in any categories then you will be redirected to 404 page. After Googling I found a solution and edit config.php file and added
define('WP_HOME','http://www.pioneersurgicalsystems.in');
define('WP_SITEURL','http://www.pioneersurgicalsystems.in');
and edited functions.php file of my theme and added the following code
update_option('siteurl', 'http://www.pioneersurgicalsystems.in');
update_option('home', 'http://www.pioneersurgicalsystems.in');
But still it does not work, everything is okay and working fine in the first link, but it is not working in the second link in which I want the site to be hosted, can anyone help me..?? Thanks
Could you please save permalink again?
Step 1 : Goto wp-admin->setting->permalinks
Steps 2 : After save changes
If you are able to login in admin and only home page is open. other pages in not able to open then please first login to admin. and then from setting menu go permalinks menu and there from first select other option again select format (like post name) which you want like this way new .htaccess is created your problem will solved.try this your problem will solved
go to Settings->permalinks save your Permalink Settings.
For some reason my wordpress blog is using // to the path to resources. For example:
<link rel="canonical" href="//my.site.com/"/>
This is not good for SEO, but I can't seem to figure out where to go to fix this. Any ideas?
go to wp-config.php, in your wordpress root, and try to change these two lines to add your website url,
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
and open the functions.php file and make below changes,
update_option('siteurl','http://example.com');
update_option('home','http://example.com');
and also try these steps,
1)Login to WordPress admin dashboard
2)Click on Settings >> General
3)Fill in your WordPress Address and Site Address and click Save.
finally these steps,
1)Backup your database in cPanel prior to making changes.
2)Use phpMyAdmin to manage your WordPress database.
3)phpMyAdmin select WordPress databaseSelect your WordPress database from the left.
4)Then select your wp_options table.
5)Click Edit beside either the siteurl or home entries.
6)Enter in your new value in the option_valuie field, then click Go
at the last try to refer,
http://www.inmotionhosting.com/support/website/wordpress/wordpress-changing-the-site-url-and-home-settings
I have a WordPress blog. All the post are currently in this convention:
http://www.myblog.com/blog/?p=1442
Now I'd like to change the URL of all posts like this one:
http://www.gomidjets.com/blog/this-is-my-post
While it's quite easy to apply it by changing the blog settings, the big problem is about the links I've placed
in many external website. I can't change them, and I'd like to map the old links to the new links somehow.
Do you know how to do it - if that's possible at all?
Do you have a better solution?
Thank you very much
Wordpress will map all old URL to new one, in case if you provided all URL in their original shape, such as http://example.com/?page_id=80
The answer is: you don't need to do anything.
I believe what you're looking for can be found in the admin panel.
In the admin panel (http://www.your-wordpress-site.com/wp-admin), go to Settings > Permalinks
Login to the admin panel first,
go for the settings->Permalink Settings
Select the format you want.
If you want change the base url for only some posts then you can edit from database.
Try this Redirection wordpress plugin to redirect your old url to your new url.
The URL's should resolve fine because the original URL you're using is the permalink one to my knowledge. If you're wanting end users to be redirected to this url, that's a bit harder.
That aside, I couldn't find any plugins that already did this. What you want to do is check the current URL against the wordpress function get_permalink() and if it doesn't match, redirect to the current permalink URL.
Im using page.php in wordpress for making a dynamic page.
Right now Im using photography/?cat=portraits
But I want photography/portraits
Im currently grabbing whatever is in my query string (cat=portraits) and only showing that content.
Where at in wordpress can I set up the routes or permalinks to be formated more simple?
Permalinks can be found under the setting tab from your WordPress admin interface
Follow this tutorial...
http://www.creativecitrus.com/wordpress-development/how-to-get-pretty-urls-in-wordpress
Or theres the Pretty URL plugin....but Ive never used that
http://wordpress.org/plugins/pretty-url/
Login wp-admin
Settings -> permalinks and choose custom structure place this sting and save it
/%category%/%postname%
If you have any problem in saving permalink please copy paste it in htaccess.
Or make it write permission for period.