Academy
- Getting started
- Dating Pro manuals : Help people find their match
-
Dating Pro manuals : Manage your dating site
- Administrators [video]
- Users
- Communication (Contact Us)
- Media
- Moderation
- Payments : Billing systems
- Payments : Access permissions
- Payments : Currency settings
- Payments : Services, packages, memberships
- Banner ads [video]
- Interface : Themes
- Interface : Menus
- Interface : Dynamic blocks
- Content : Countries
- Content : Languages
- Content : User types
- Content : Info pages
- Content : Mail alerts
- Content : News [video]
- Content : Horoscope
- Content : Mailing lists
- System : Cronjobs
- System : Social networks
- System : Uploads : Settings
- System : Uploads : Watermarks
- System : Comments
- System : File uploads
- System : Field editor
- System : Video settings
- System : SEO settings
- System : Audio uploads
- System : Geo maps
- System : Ratings
- System : Misc settings
- System : Reports
- System : Network
- Modules : Modules management (Apps and add-ons)
- Modules : Referral links
- Modules : Questions
- Modules : Money gifts
- Modules : Gift of membership
- Modules : Polls
- Modules : Gift store
- Modules : Video chats
- Modules : Instant Messenger (IM)
- Modules : Wall events
- Modules : Widgets : Featured users widget
- Modules : Widgets : New users widget
- Modules : Widgets : Selected users widget
- Modules : Widgets : Chat invitation widget
- Modules : ShoutBox
- Modules : Kisses
- Modules : Mobile
- Modules : LikeMe
- Modules : Incomplete signup
- Modules : Landing pages
- Modules : Nearest users
- Modules : Associations
- Modules : Bonuses
- Modules : Events
- Modules : Virtual gifts
- Modules : Birthdays
- Modules : Companions
- Modules : Special offers
- Marketing
- For developers
- How to profit in dating business
-
Help & FAQs
- What is the difference between Dating Pro packages?
- How do I launch a dating site without users?
- How to use discount code
- How much can I earn with my dating site?
- How can I install a module/add-on?
- Discounts and bonuses
- Crowdfunding Projects: Rules and Guarantees
- How can I install Dating Pro on my local server?
- What is a software license?
- How much does it cost to install the Dating Pro script?
- How many site members does Dating Pro support?
- Do you offer customization services?
- What are the webmaster services?
- What are custom add-ons?
- What is your moneyback policy?
- How much does it cost to install a module?
- What is your upgrade policy?
- Updating from Dating Pro Flirt to Dating Pro Genie
- Updating from Dating Pro Elfin to Dating Pro Flirt
- How to change a favicon?
- How to change copyright on my dating website?
- How to restore the administrator password?
- How to publish my app in the App Store?
- How to update to the latest script version?
- Customization changes — Frequently asked questions
- Can I try the software?
- How to enable Facebook login on my website?
- Where I can find my order key while installing the site?
- Updating from Dating Pro Amore to Dating Pro Cupid
- Updating from Dating Pro Cupid to Dating Pro Dolce
- Updating from Dating Pro Dolce to Dating Pro Elfin
- How can I purchase apps, products or services in the Marketplace?
- How to change the title of my website? [video]
- How can I change the logotype of my dating site? [video]
- How to change a domain name?
- Can I modify my site?
- What is a template/design integration?
- How to set site through secure connection (https)
- How to modify SEO titles and other SEO information
- How to change texts on the site
- What are the necessary DNS for email messages
- How to add htaccess redirects
- How can I pay for the extra development?
- How can I start accepting money online via CCBill?
- How to enable Google Sign-In on my website?
- How to add regions and cities to 5 default countries
- How to send email message to site users
- What features are there in the mobile version of my dating site?
- How can I put my website under maintenance?
- How do I connect a special landing page to my dating website?
- How can I connect my dating site to MailChimp?
- How to find PayPal Merchant/Seller ID
- Free tools for your dating site
- How do I move my dating site from one server to another?
- What is Responsive design?
- What is Landing page for iOS and Android apps?
- How do I modify the main page of the site?
- PG Dating Pro Premium package explained
- Can I preview the text of your development agreement and other contracts?
- What happens after I purchase the software?
- Will my changes from the trial site be saved after I buy the script?
- Is my site 100% open code?
- How do I activate Google Maps on my dating site?
- Do you require upfront payments for custom work?
- What are the video chats options?
- What is 1 month shared hosting unlimited?
- What is 1 year of updates?
- What is 1 month / 1 year of support and installation?
- What is 10 000-100 000 site members with Dating Pro network?
- What is App Store and Google Play submission?
- Setting up success URL, failure URL and result URL
- What is Multidomain license?
- How do you handle project development?
- VIDEO TUTORIALS
- ONLINE COURSES
- Free Tools
- SEARCH
How do I add .htaccess redirects?
To make it work, in the .htaccess file (may be invisible in your control panel, you’ll need to activate “show hidden files” option) in the root directory of your script add following redirect rules:
1. From www to non-www
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
2. From non-www to www
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
3. To https
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
4. From https to http
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
5. Complex redirect from the following host names:
http://example.com
http://www.example.com
https://example.com
to
https://example.com
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
If instead of example.com
you want the default URL to be www.example.com
, then simply change the third and the fifth lines:
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]