In my public_html I have 2 Folders, wordpress and tickets. I currently have the /wordpress
directory working via mod_rewrite so that the URL's look nice. I'd like to setup an instance of OSTicket
, and upon navigating to example.com/tickets to start the configuration, I'm hit with a Wordpress 404 error
.
My root .htaccess
looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/tickets/.*
RewriteRule ^tickets - [L,NC]
RewriteRule ^index\.php$ /wordpress/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
I also have a .htaccess
in the tickets folder, with;
RewriteEngine off
If anyone has some insight or perhaps something I should look into it would be most appreciated, thankyou all kindly.