Re: Ceon URI Mapping (SEO)
To recap my issue my staging area for a website was redirected to my in-house web server from the production server by adding an A Name to the DNS zone and pointing to the home servers IP. ie. demo.domain.com.

Originally Posted by
conor
Hi,
Try adding a slash before index.php in the rewrite rule
Subdomains make no difference whatsoever as to how the module works... everything before the initial slash is irrelevant! So I think this is just a server configuration problem on your end (like using a htaccess rewrite rule in a virtualhost directive, which the above tip should fix).
ceon
The following changes were made to get this module to work if your domain is being initially redirected from another server.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/(index.php|admin|editors) [NC]
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
RewriteCond %{REQUEST_URI} !/(cpanel|frontend) [NC]
RewriteRule (.*) /index.php [L]
Dan - statuscontrols.com/web
web programming and design
Bookmarks