Tagged Questions
0
votes
1answer
47 views
Custom domain for sub-section of parent website
While this topic could be considered a general web development item, I'm using WordPress, so I need to find some way to do this within WordPress and without breaking it. I realize this is a deep ...
0
votes
1answer
44 views
WordPress on a subfolder but accessible from root
I've searched quite a lot without finding a solution.
I have a wordpress blog in /_wp and something else in /other
What I'm trying to is that every request gets redirected to the WordPress. Except ...
1
vote
0answers
89 views
Some posts from custom post type to subdomains
I have custom post type where all posts associated with some persons.
Like: mysite.com/masters/master-name/
And i need to have redirection from master-name.mysite.com.
This redirection will be ...
0
votes
1answer
132 views
Redirect URL Containing åäö
I'm moving my blog from Typepad to Wordpress but have a big problem. Among the urls that are exported from Typepad, many containing åäö. When they are imported WordPress changes all URLs and instead ...
0
votes
1answer
149 views
How to configure Multisite Network with randomized hostnames?
I'm trying to convert a freshly-installed and functional WordPress into a multisite network. But I'm having problems because of our Apache configuration.
We use Apache to randomly redirect requests ...
3
votes
1answer
150 views
Sub domain redirection to taxonomy
Hi all I want to use sub domain for my taxonomy like that :
http://taxonomy.domain.com/apple map to http://www.domain.com/taxonomy/apple
I add this to my vhost
RewriteCond %{HTTP_HOST} ...
0
votes
1answer
311 views
why doesn't my rewrite rule work? (is there something weird with wordpress htaccess?)
My ht access includes:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/preview/(.*)\-[0-9]+$
RewriteRule ^/preview/(.*)\-[0-9]+$ /$1 [R=301,L]
but still when I try to access ...
2
votes
2answers
2k views
Making a plugin file accessible via url rewrite?
In my WordPress plugin I have a php file that generates some stats about the blog and outputs it as a simple text file. To access WordPress functions I've included this at the top of the file:
...