i have script in directory and on root wordpress is running which is creating problems when i try to run script in sub directory , throwing 404 error
my website structure
my script have urls like
so i want that all urls like above to be redirected to index.php of software directory
what i tried
but my current htaccess configuration is throwing me error <strong>No input file specified.</strong>
my website structure
Code:
wordpress : /
script : /Software/
my script have urls like
Code:
> http://www.domain.com/Software/home
> http://www.domain.com/Software/caseForm
> http://www.domain.com/Software/createuser
so i want that all urls like above to be redirected to index.php of software directory
what i tried
Code:
RewriteEngine on
RewriteBase /Software
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
but my current htaccess configuration is throwing me error <strong>No input file specified.</strong>