rewrite base

Top directories can break functionality on sub directories. Case in point:

Scenario: WordPress site with popular application, helpdesk.
http://www.qualityunit.com/liveagent/

some_site.com

Generally the root level htaccess file of WordPress contains a statement:
“RewriteBase /”

This causes the following example URL to break:
some_site.com/helpdesk

You need to create a new statement in the /helpdesk directory folder’s htaccess file:
RewriteBase /helpdesk/

This applies to any other application that may reside in sub directories.

Enjoy!

Keywords: Rewrite, wordpress,  base, directories
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

Domain redirect

So you bought another domain name that matches one you currently have.  You shouldn’t...

restrict by IP or password

I find myself tired of having to answer the pop up authentication box to view my control panel...

rewrite non SSL to SSL

Want to force users to use SSL on your site?Add this code to the top of your .htaccess file, edit...

Traffic source redirect

Need to redirect source traffic to another domain?  Well, if you can’t modify the link...

Restrict access by IP

WARNING:  Backup your current .htaccess file if you have one so you can quickly revert in...