| 1 | == Creation a search engine friendly new Dolphin page == |
| 2 | |
| 3 | * Navigate to '''Admin Panel -> Builders -> Homepage Builder''' |
| 4 | |
| 5 | * Click the '''New Page''' link in the upper right corner |
| 6 | |
| 7 | * Enter a new name -> Press '''Ok''' |
| 8 | |
| 9 | * After page reload you can start to build your new page |
| 10 | |
| 11 | * After you have completed, click the '''View page''' link above the '''Active Area''' block |
| 12 | |
| 13 | * You will see a page with the address like '''http://yoursite_url/viewPage.php?ID=NewPage''' |
| 14 | |
| 15 | * Open the '''.htaccess''' file in your Dolphin's home directory, find the following line: |
| 16 | {{{ |
| 17 | RewriteCond %{REQUEST_FILENAME} -f [OR] |
| 18 | }}} |
| 19 | |
| 20 | and insert the following line before it: |
| 21 | {{{ |
| 22 | RewriteRule ^NewPage$ viewPage?ID=NewPage [QSA,L] |
| 23 | }}} |
| 24 | |
| 25 | * After that your new page will become available at the URL: http://yoursite_url/NewPage |
| 26 | |
| 27 | '''N.B.''' You have to replace the '''!NewPage''' with your desired page name. |
| 28 | |
| 29 | * Now you will be able to add this link to the navigation menu using the Navigation Menu Builder |