tbtforsolotravelers, are you using an FTP client or your VDeck control panel to rename files?
What is needed now is a .htaccess file. Normally, when you change permalink structure, a .htaccess file is saved. In your case that should be in the public_html folder. Evidently that isn’t happening, so we now need to force the issue. I’d tell you to make sure that whatever you’re using to view files is set to show hidden files, but I tend to think it already is, simply because you sent a .htaccess file once.
The .htaccess file I’d like you to create will look like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
You can copy & paste that into a text editor of your choice. Please don’t use a word processor such as Wordpad, Microsoft Word, Pages, etc., because these will introduce unwanted formatting. If you use Notepad, found in Windows, then save the file not as a text file, but rather as ‘All Files’. Make sure the filename looks like .htaccess
If you can’t save the file w/the beginning dot (.), it’s ok–just upload it to your server using either ftp or your control panel file manager, then rename it on the server.