- What is Dynamic PSP?
- What are the differences between Oracle PSP and Dynamic PSP?
- Why not use JSP?
- Why Oracle still supports PL/SQL when they integrated Java into Oracle RDBMS?
- How To Secure Dynamic PSP Development Interface?
- How to enable native PL/SQL compilation in 9i Release 2 on Windows?
- I am unable to login into Unit Commander using default account.
- What is WebDAV?
- How to avoid redirection from index.html to DPSP unit?
- Java class to convert xls to csv or from MS Excel to CSV file into PL/SQL and upload data from .xls file to Oracle
- Java class to convert from DBF (DB2) to CSV file within Oracle PL/SQL
How to avoid redirection from index.html to DPSP unit?
Use Apache mod_rewrite directive:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} www.dynamicpsp.com [NC]
RewriteRule ^/$ /dpsp/prod/!go?id_=nhome [PT]
RewriteCond %{HTTP_HOST} www.dynamicpsp.com [NC]
RewriteRule ^/([\!]go)(.*)$ /dpsp/prod/!go$2 [PT]
RewriteLog "rewrite.log"
RewriteLogLevel 0
</IfModule>
|