Tagged Questions
0
votes
2answers
136 views
How do I add my PHP app to a Wordpress page whilst keeping semantic URLs?
I am rebuilding a static website for a client using Wordpress on the main domain- eg domain.com. There is also a directory of members website at directory.domain.com which I was hoping to migrate over ...
0
votes
1answer
38 views
Need Help with Custom ModRewrite
How can I correctly send all traffic from:
http://my-domain.com/about/case-studies/clientName/
to
http://my-domain.com/about/case-studies/?clientName=$clientName
(not seen by visitors)
...
0
votes
3answers
276 views
How to redirect a virtual page (e.g. /blog) to the home page?
I want my to reach my website's main page when entering an url like:
http://example.com/blog
However, I can't seem to get it to work with a typical rewrite rule:
RewriteRule ^/blog$ /
I'm always ...